aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/arrakis/hardware-configuration.nix
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-10-15 22:40:06 -0700
committerMark Nipper <nipsy@bitgnome.net>2024-10-15 22:40:06 -0700
commitf02a20928ff32fb43f9a0abf0c801482348da324 (patch)
tree35427a8bad4daebe6b730557c6fa0e2fe1d39b40 /hosts/arrakis/hardware-configuration.nix
parent2d1177d41bea495d021f7048ffd49eb31aab1fa1 (diff)
downloadnix-f02a20928ff32fb43f9a0abf0c801482348da324.tar
nix-f02a20928ff32fb43f9a0abf0c801482348da324.tar.gz
nix-f02a20928ff32fb43f9a0abf0c801482348da324.tar.bz2
nix-f02a20928ff32fb43f9a0abf0c801482348da324.tar.lz
nix-f02a20928ff32fb43f9a0abf0c801482348da324.tar.xz
nix-f02a20928ff32fb43f9a0abf0c801482348da324.tar.zst
nix-f02a20928ff32fb43f9a0abf0c801482348da324.zip
Revert nVidia patches
Diffstat (limited to 'hosts/arrakis/hardware-configuration.nix')
-rw-r--r--hosts/arrakis/hardware-configuration.nix7
1 files changed, 5 insertions, 2 deletions
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;
};
};
}