11 lines
255 B
Nix
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];
|
|
};
|
|
};
|
|
}
|