diff options
-rw-r--r-- | ops/modules/tvl-users.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ops/modules/tvl-users.nix b/ops/modules/tvl-users.nix index 31a1a0d2cb83..d8269746a8f1 100644 --- a/ops/modules/tvl-users.nix +++ b/ops/modules/tvl-users.nix @@ -77,4 +77,9 @@ rxvt-unicode-unwrapped.terminfo kitty.terminfo ]; + + security.sudo.extraRules = [{ + groups = [ "wheel" ]; + commands = [{ command = "ALL"; options = [ "NOPASSWD" ]; }]; + }]; } |