passwordless sudo

This commit is contained in:
TheWanderingCrow 2025-07-02 16:11:05 -04:00
parent 02635e22c2
commit c0e8ba86f3
2 changed files with 6 additions and 0 deletions

View file

@ -26,6 +26,7 @@ in {
"hosts/common/core/ssh.nix"
"hosts/common/core/editor.nix"
"hosts/common/core/fonts.nix"
"hosts/common/core/sudo.nix"
"hosts/common/users/primary"
"hosts/common/users/primary/${platform}.nix"
"modules/common"

View file

@ -0,0 +1,5 @@
{
security.sudo = {
wheelNeedsPassword = false;
};
}