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

12 lines
255 B
Nix
Raw Normal View History

{pkgs, ...}: {
security = {
# Enable Soteria, a GTK-based Polkit authentication agent.
soteria.enable = true;
apparmor = {
enable = true;
killUnconfinedConfinables = true;
packages = [pkgs.apparmor-profiles];
};
};
2024-08-22 21:41:20 +02:00
}