From 63a49d406652fd7a599b24e8acc89ce09b4e95cf Mon Sep 17 00:00:00 2001 From: Veneficium <85629831+veneficium42@users.noreply.github.com> Date: Wed, 3 Jul 2024 21:45:21 +0200 Subject: [PATCH] fix: add 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 1a13c03..430bce0 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 ]; + environment.systemPackages = with pkgs; [ blender.override { cudaSupport = true; } ]; }; };