19 lines
No EOL
411 B
Nix
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" ];
|
|
}
|
|
];
|
|
};
|
|
} |