Disable prompting for password for sudo

This commit is contained in:
Eli Ribble 2025-07-12 03:44:42 +00:00
parent 93c0365a5f
commit af5c966e5b
2 changed files with 8 additions and 0 deletions

View file

@ -3,6 +3,7 @@
./cloud-init.nix
./do-agent.nix
./fish.nix
./sudo.nix
./tmux.nix
];
}

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, configFiles, ... }:
with lib;
{
security.sudo.wheelNeedsPassword = false;
}