diff options
-rw-r--r-- | flake.nix | 9 | ||||
-rw-r--r-- | hosts/arrakis/hardware-configuration.nix | 7 |
2 files changed, 6 insertions, 10 deletions
@@ -22,19 +22,13 @@ nixpkgs-stable.url = "github:nixos/nixpkgs/release-23.11"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; - nvidia-patch.url = "github:icewind1991/nvidia-patch-nixos"; - nvidia-patch.inputs.nixpkgs.follows = "nixpkgs-unstable"; - sops-nix = { url = "github:Mic92/sops-nix"; inputs.nixpkgs.follows = "nixpkgs-unstable"; }; }; - outputs = inputs@{ home-manager-stable, home-manager-unstable, nixos-hardware, nixpkgs-stable, nixpkgs-unstable, nvidia-patch, sops-nix, ... }: rec { - - nixpkgs.overlays = [ inputs.nvidia-patch.overlays.default ]; - + outputs = inputs@{ home-manager-stable, home-manager-unstable, nixos-hardware, nixpkgs-stable, nixpkgs-unstable, sops-nix, ... }: rec { nixosConfigurations = { arrakis = nixpkgs-unstable.lib.nixosSystem { pkgs = pkgs-unstable; @@ -118,5 +112,4 @@ overlays = [(import ./pkgs)]; }; }; - } diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix index 8d87066..4e67e65 100644 --- a/hosts/arrakis/hardware-configuration.nix +++ b/hosts/arrakis/hardware-configuration.nix @@ -1,3 +1,6 @@ +# 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, lib, pkgs, modulesPath, ... }: { @@ -52,10 +55,10 @@ hardware = { bluetooth.enable = true; - nvidia = let package = config.boot.kernelPackages.nvidiaPackages.beta; in { + nvidia = { modesetting.enable = true; open = true; - package = pkgs.nvidia-patch.patch-nvenc (pkgs.nvidia-patch.patch-fbc package); + package = config.boot.kernelPackages.nvidiaPackages.beta; }; }; } |