10 lines
No EOL
165 B
Nix
10 lines
No EOL
165 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
security.sudo.extraRules = [
|
|
{
|
|
groups = [ "wheel" ];
|
|
commands = [ { command = "ALL"; options = [ "NOPASSWD" ]; } ];
|
|
}
|
|
];
|
|
} |