From 8b0286d8d87f7d68e20a44ab935fdbeb07fdc57a Mon Sep 17 00:00:00 2001 From: Veneficium <85629831+veneficium42@users.noreply.github.com> Date: Wed, 3 Jul 2024 22:28:28 +0200 Subject: [PATCH] fix: fix blender cuda support --- hosts/main-laptop/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/main-laptop/configuration.nix b/hosts/main-laptop/configuration.nix index 430bce0..2dc5c33 100644 --- a/hosts/main-laptop/configuration.nix +++ b/hosts/main-laptop/configuration.nix @@ -27,7 +27,7 @@ settings.drivers.gpu.nvidia.forceDisable = lib.mkForce false; settings.drivers.gpu.nvidia.enable = lib.mkForce true; settings.services.switcheroo.enable = lib.mkForce true; - environment.systemPackages = with pkgs; [ blender.override { cudaSupport = true; } ]; + environment.systemPackages = [ (pkgs.blender.override { cudaSupport = true; }) ]; }; };