mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
nixos/security: add landlock, yama, and bpf defaults
This commit is contained in:
parent
558478154c
commit
22f2e258af
1 changed files with 22 additions and 12 deletions
|
@ -5,7 +5,7 @@ in
|
|||
{
|
||||
options = {
|
||||
security.lsm = lib.mkOption {
|
||||
type = lib.types.uniq (lib.types.listOf lib.types.str);
|
||||
type = lib.types.listOf lib.types.str;
|
||||
default = [ ];
|
||||
description = ''
|
||||
A list of the LSMs to initialize in order.
|
||||
|
@ -13,16 +13,26 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf (lib.lists.length cfg.lsm > 0) {
|
||||
assertions = [
|
||||
{
|
||||
assertion = builtins.length (lib.filter (lib.hasPrefix "security=") config.boot.kernelParams) == 0;
|
||||
message = "security parameter in boot.kernelParams cannot be used when security.lsm is used";
|
||||
}
|
||||
];
|
||||
config = lib.mkMerge [
|
||||
{
|
||||
# We set the default LSM's here due to them not being present if set when enabling AppArmor.
|
||||
security.lsm = [
|
||||
"landlock"
|
||||
"yama"
|
||||
"bpf"
|
||||
];
|
||||
}
|
||||
(lib.mkIf (lib.lists.length cfg.lsm > 0) {
|
||||
assertions = [
|
||||
{
|
||||
assertion = builtins.length (lib.filter (lib.hasPrefix "security=") config.boot.kernelParams) == 0;
|
||||
message = "security parameter in boot.kernelParams cannot be used when security.lsm is used";
|
||||
}
|
||||
];
|
||||
|
||||
boot.kernelParams = [
|
||||
"lsm=${lib.concatStringsSep "," cfg.lsm}"
|
||||
];
|
||||
};
|
||||
boot.kernelParams = [
|
||||
"lsm=${lib.concatStringsSep "," cfg.lsm}"
|
||||
];
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue