From d9b82bbf2b796c7ca08bc0ecb4de1e75fb2749ac Mon Sep 17 00:00:00 2001 From: OlivierChiasson Date: Sun, 12 Jul 2026 21:07:57 -0300 Subject: [PATCH] Updated the `nvidia.nix` file to set `hardware.nvidia-container-toolkit.enable` to a default value of true, ensuring consistent behavior across configurations. --- modules/hosts/14900k/_private/nvidia.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hosts/14900k/_private/nvidia.nix b/modules/hosts/14900k/_private/nvidia.nix index f0819fc..864e945 100644 --- a/modules/hosts/14900k/_private/nvidia.nix +++ b/modules/hosts/14900k/_private/nvidia.nix @@ -15,5 +15,5 @@ lib.mkIf (!config.chiasson.system.gpuPassthru.enable) { package = config.boot.kernelPackages.nvidiaPackages.latest; }; - hardware.nvidia-container-toolkit.enable = true; + hardware.nvidia-container-toolkit.enable = lib.mkDefault true; }