This commit is contained in:
John Lancaster
2026-03-14 11:38:51 -05:00
parent fe71c9c3eb
commit d60a52edda
2 changed files with 0 additions and 22 deletions

View File

@@ -1,16 +0,0 @@
{ inputs, ... }: {
flake.modules.nixos.sudo = { pkgs, lib, ... }: {
security.sudo = {
enable = true;
extraRules = [{
groups = [ "wheel" ];
commands = [
{
command = "ALL";
options = [ "NOPASSWD" ];
}
];
}];
};
};
}