diff --git a/nixos/machines/crash/machine.nix b/nixos/machines/crash/machine.nix index c8f453d..940e90b 100644 --- a/nixos/machines/crash/machine.nix +++ b/nixos/machines/crash/machine.nix @@ -38,6 +38,7 @@ inputs.nixos-hardware.nixosModules.common-gpu-nvidia # Our modules (import ../../modules/base.nix {inherit inputs;}) + (import ../../modules/desktop.nix) (import ./configuration.nix) (import ./hardware.nix) (import ../../modules/user.nix { diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix new file mode 100644 index 0000000..32ae14d --- /dev/null +++ b/nixos/modules/desktop.nix @@ -0,0 +1,8 @@ +{ + config, + lib, + pkgs, + ... +}: { + security.sudo.wheelNeedsPassword = false; +}