nixos/system/security.nix
2024-03-18 13:11:31 +01:00

8 lines
119 B
Nix

{ config, pkgs, ... }: {
# Enable sudo
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
}