nichts/modules/system/os/security/security.mod.nix
Bloxx12 f813eb37d3
security: enable soteria
Soteria is a GTK-based Polkit authentication agent.
2025-07-19 00:47:08 +02:00

11 lines
255 B
Nix

{pkgs, ...}: {
security = {
# Enable Soteria, a GTK-based Polkit authentication agent.
soteria.enable = true;
apparmor = {
enable = true;
killUnconfinedConfinables = true;
packages = [pkgs.apparmor-profiles];
};
};
}