diff options
-rw-r--r-- | flake.nix | 1 | ||||
-rw-r--r-- | hosts/arrakis/hardware-configuration.nix | 4 |
2 files changed, 2 insertions, 3 deletions
@@ -63,6 +63,7 @@ home-manager.users.nipsy = import ./home/nipsy/arrakis.nix; } sops-nix.nixosModules.sops + { nixpkgs.overlays = [ inputs.nvidia-patch.overlays.default ]; } ]; }; diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix index 67c3ee1..e1b7dc0 100644 --- a/hosts/arrakis/hardware-configuration.nix +++ b/hosts/arrakis/hardware-configuration.nix @@ -1,7 +1,7 @@ # Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. -{ config, inputs, lib, nvidia-patch, pkgs, modulesPath, ... }: +{ config, lib, pkgs, modulesPath, ... }: { imports = @@ -88,8 +88,6 @@ { device = "/dev/disk/by-label/swap2"; } ]; - nixpkgs.overlays = [inputs.nvidia-patch.overlays.default]; - hardware = { bluetooth.enable = true; graphics = { |