mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-17 00:54:01 +05:30
Setup for declarative blender prefs
This commit is contained in:
parent
c824064354
commit
41e760d484
1 changed files with 9 additions and 1 deletions
|
@ -10,7 +10,15 @@ in {
|
|||
};
|
||||
|
||||
config = {
|
||||
home.packages = [ pkgs.blender-hip ];
|
||||
home.packages =
|
||||
[ pkgs.blender-hip
|
||||
(pkgs.writeScriptBin "declarative-blender-prefs"
|
||||
''
|
||||
#!/bin/sh
|
||||
${pkgs.blender-hip}/bin/blender --python ${./applyprefs.py};
|
||||
'')
|
||||
];
|
||||
home.file.".config/declarative-blender-prefs/applyprefs.py".source = ./applyprefs.py;
|
||||
home.file.".config/blender/extensions/node_pie.zip".source = builtins.fetchurl {
|
||||
url = "https://github.com/strike-digital/node_pie/releases/download/1.2.38/node_pie_1_2_38.zip";
|
||||
sha256 = "sha256:00kscj7dkl80kc482jg3kcw9vhr1n64n44ld2xncr6gxil679fk2";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue