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

15 lines
238 B
Nix
Raw Normal View History

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