nichts/modules/system/os/security/security.mod.nix
2025-07-16 22:15:41 +02:00

14 lines
238 B
Nix

{pkgs, ...}: {
security = {
polkit = {
enable = true;
package = pkgs.polkit;
};
apparmor = {
enable = true;
killUnconfinedConfinables = true;
packages = [pkgs.apparmor-profiles];
};
};
}