nichts/modules/system/os/security/module.nix

19 lines
273 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-08-22 21:41:20 +02:00
imports = [
./sudo.nix
];
security = {
polkit = {
enable = true;
package = pkgs.polkit;
};
apparmor = {
enable = true;
killUnconfinedConfinables = true;
packages = [pkgs.apparmor-profiles];
};
};
2024-08-22 21:41:20 +02:00
}