From da29250fef605b5e5eca0db672e7763c0e6b0e32 Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Wed, 23 Oct 2024 00:30:49 -0700 Subject: Add nVidia patches --- hosts/arrakis/hardware-configuration.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'hosts/arrakis') diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix index ed9b51e..7d5c4bf 100644 --- a/hosts/arrakis/hardware-configuration.nix +++ b/hosts/arrakis/hardware-configuration.nix @@ -1,8 +1,11 @@ # 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, ... }: +{ config, inputs, lib, nvidia-patch, pkgs, modulesPath, ... }: +let + package = config.boot.kernelPackages.nvidiaPackages.beta; +in { imports = [ #(modulesPath + "/installer/scan/not-detected.nix") @@ -88,6 +91,8 @@ { device = "/dev/disk/by-label/swap2"; } ]; + nixpkgs.overlays = [ inputs.nvidia-patch.overlays.default ]; + hardware = { bluetooth.enable = true; graphics = { @@ -98,7 +103,7 @@ nvidia = { modesetting.enable = true; open = true; - package = config.boot.kernelPackages.nvidiaPackages.beta; + package = pkgs.nvidia-patch.patch-nvenc (pkgs.nvidia-patch.patch-fbc package); }; }; } -- cgit v1.2.3