nix/shared/commons/sudo.nix
Sic mundus creatus est 6447202f7f init
2025-07-18 01:40:21 +02:00

19 lines
No EOL
411 B
Nix

{ ... }:
{
security.sudo = {
enable = true;
extraRules = [
# Sudoers wheel can do everything without password
{
commands = [
{
command = "ALL";
options = [ "NOPASSWD" ];
}
];
groups = [ "wheel" ];
}
];
};
}