Enable cuda support only for blender
This commit is contained in:
parent
ab2831c534
commit
8207f8fe23
2 changed files with 4 additions and 2 deletions
|
|
@ -247,7 +247,7 @@
|
|||
odin-nvidia = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = commonModules ++ odinCommonModules ++ [
|
||||
{ nixpkgs.config = config // { cudaSupport = true; }; }
|
||||
{ nixpkgs.config = config; }
|
||||
./odin/configuration-nvidia.nix
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1 +1,3 @@
|
|||
{ pkgs, ... }: { home.packages = with pkgs; [ blender ]; }
|
||||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [ (blender.override { cudaSupport = true; }) ];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue