nix-conf/system/security.nix

12 lines
165 B
Nix
Raw Normal View History

2024-10-18 23:42:11 -04:00
{ ... }:
{
security.doas = {
enable = true;
extraRules = [
{ groups = [ "wheel" ]; persist = true; }
];
};
security.polkit.enable = true;
}