nix-conf/system/security.nix

13 lines
182 B
Nix
Raw Normal View History

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