core/security: disable sudo password for wheel

This commit is contained in:
Anthony Rodriguez 2024-10-06 12:11:51 +02:00
parent be151ba76b
commit 05e4923703
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 4 additions and 0 deletions

View file

@ -2,6 +2,7 @@
imports = [ imports = [
./boot.nix ./boot.nix
./users.nix ./users.nix
./security.nix
../nix ../nix
]; ];
i18n = { i18n = {

3
system/core/security.nix Normal file
View file

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