2025-04-06 22:09:32 +02:00
|
|
|
{pkgs, ...}: {
|
|
|
|
security = {
|
2025-07-19 00:18:14 +02:00
|
|
|
# Enable Soteria, a GTK-based Polkit authentication agent.
|
|
|
|
soteria.enable = true;
|
2025-04-06 22:09:32 +02:00
|
|
|
apparmor = {
|
|
|
|
enable = true;
|
|
|
|
killUnconfinedConfinables = true;
|
|
|
|
packages = [pkgs.apparmor-profiles];
|
|
|
|
};
|
|
|
|
};
|
2024-08-22 21:41:20 +02:00
|
|
|
}
|