Blender: Difference between revisions
Moved introduction section out of Installation and to top Tags: Mobile edit Mobile web edit Advanced mobile edit |
m Closed () braces for pieces of code missing a closing ) |
||
| Line 20: | Line 20: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
environment.systemPackages = with pkgs; [ | environment.systemPackages = with pkgs; [ | ||
(blender.withPackages(ps: [ ps.pyserial ps.fs ]) | (blender.withPackages(ps: [ ps.pyserial ps.fs ])) | ||
]; | ]; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| Line 31: | Line 31: | ||
environment.systemPackages = with pkgs; [ | environment.systemPackages = with pkgs; [ | ||
(blender-cuda.withPackages(ps: [ ps.yq ]) | (blender-cuda.withPackages(ps: [ ps.yq ])) | ||
# (pkgsRocm.blender.withPackages(ps: [ ps.pyserial ps.fs ]) | # (pkgsRocm.blender.withPackages(ps: [ ps.pyserial ps.fs ])) | ||
]; | ]; | ||
} | } | ||