feat(attic): disable sudo password for wheel group

- Set `security.sudo.wheelNeedsPassword` to `false` in `default.nix`.
- Simplifies sudo access for users in the wheel group and aligns with system usage patterns.
This commit is contained in:
Harald Hoyer 2026-03-25 10:07:08 +01:00
parent 95bc8f3c70
commit 179dd93a5b

View file

@ -29,6 +29,8 @@
boot.loader.efi.canTouchEfiVariables = lib.mkForce false; boot.loader.efi.canTouchEfiVariables = lib.mkForce false;
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
security.sudo.wheelNeedsPassword = false;
security.tpm2.enable = false; security.tpm2.enable = false;
security.tpm2.abrmd.enable = false; security.tpm2.abrmd.enable = false;