From 6d990d6c997ef77c8a67fde803f3235dd379f016 Mon Sep 17 00:00:00 2001 From: cnst Date: Tue, 20 Aug 2024 21:18:05 +0200 Subject: [PATCH] production nvidia version --- hosts/toothpc/modules.nix | 2 +- system/modules/hardware/graphics/amd/default.nix | 4 ++-- system/modules/hardware/graphics/nvidia/default.nix | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/toothpc/modules.nix b/hosts/toothpc/modules.nix index 6a738f1f..3c32d4ab 100644 --- a/hosts/toothpc/modules.nix +++ b/hosts/toothpc/modules.nix @@ -20,7 +20,7 @@ amd.enable = false; nvidia = { enable = true; - package = "beta"; # set to stable or beta depending on preference + package = "stable"; # set to stable or beta depending on preference }; }; }; diff --git a/system/modules/hardware/graphics/amd/default.nix b/system/modules/hardware/graphics/amd/default.nix index 57392f97..17d6537c 100644 --- a/system/modules/hardware/graphics/amd/default.nix +++ b/system/modules/hardware/graphics/amd/default.nix @@ -24,8 +24,8 @@ in { # mesa mesa - vulkan - # vulkan-tools + # vulkan + vulkan-tools # vulkan-loader # vulkan-validation-layers # vulkan-extension-layer diff --git a/system/modules/hardware/graphics/nvidia/default.nix b/system/modules/hardware/graphics/nvidia/default.nix index 6e45aed7..a9bde556 100644 --- a/system/modules/hardware/graphics/nvidia/default.nix +++ b/system/modules/hardware/graphics/nvidia/default.nix @@ -54,7 +54,7 @@ in { package = if cfg.package == "beta" then config.boot.kernelPackages.nvidiaPackages.beta - else config.boot.kernelPackages.nvidiaPackages.stable; + else config.boot.kernelPackages.nvidiaPackages.production; modesetting.enable = true; powerManagement = { enable = false;