|
6 | 6 | blender-bin, |
7 | 7 | ... |
8 | 8 | }: { |
9 | | - home.packages = with pkgs; [ |
10 | | - # creative |
11 | | - # https://github.com/edolstra/nix-warez/blob/master/blender/flake.nix |
12 | | - blender-bin.packages.${pkgs.system}.blender_4_2 # 3d modeling |
13 | | - # gimp # image editing, I prefer using figma in browser instead of this one |
14 | | - inkscape # vector graphics |
15 | | - krita # digital painting |
16 | | - musescore # music notation |
17 | | - # reaper # audio production |
18 | | - # sonic-pi # music programming |
| 9 | + home.packages = with pkgs; |
| 10 | + [ |
| 11 | + # creative |
| 12 | + # gimp # image editing, I prefer using figma in browser instead of this one |
| 13 | + inkscape # vector graphics |
| 14 | + krita # digital painting |
| 15 | + musescore # music notation |
| 16 | + # reaper # audio production |
| 17 | + # sonic-pi # music programming |
19 | 18 |
|
20 | | - # 2d game design |
21 | | - ldtk # A modern, versatile 2D level editor |
22 | | - # aseprite # Animated sprite editor & pixel art tool |
| 19 | + # 2d game design |
| 20 | + # aseprite # Animated sprite editor & pixel art tool |
23 | 21 |
|
24 | | - # this app consumes a lot of storage, so do not install it currently |
25 | | - # kicad # 3d printing, eletrical engineering |
| 22 | + # this app consumes a lot of storage, so do not install it currently |
| 23 | + # kicad # 3d printing, eletrical engineering |
26 | 24 |
|
27 | | - # fpga |
28 | | - pkgs-unstable.python313Packages.apycula # gowin fpga |
29 | | - pkgs-unstable.yosys # fpga synthesis |
30 | | - pkgs-unstable.nextpnr # fpga place and route |
31 | | - pkgs-unstable.openfpgaloader # fpga programming |
32 | | - # nur-ryan4yin.packages.${pkgs.system}.gowin-eda-edu-ide # app: `gowin-env` => `gw_ide` / `gw_pack` / ... |
33 | | - ]; |
| 25 | + # fpga |
| 26 | + pkgs-unstable.python313Packages.apycula # gowin fpga |
| 27 | + pkgs-unstable.yosys # fpga synthesis |
| 28 | + pkgs-unstable.nextpnr # fpga place and route |
| 29 | + pkgs-unstable.openfpgaloader # fpga programming |
| 30 | + # nur-ryan4yin.packages.${pkgs.system}.gowin-eda-edu-ide # app: `gowin-env` => `gw_ide` / `gw_pack` / ... |
| 31 | + ] |
| 32 | + ++ (lib.optionals pkgs.stdenv.isx86_64 [ |
| 33 | + # https://github.com/edolstra/nix-warez/blob/master/blender/flake.nix |
| 34 | + blender-bin.packages.${pkgs.system}.blender_4_2 # 3d modeling |
| 35 | + |
| 36 | + ldtk # A modern, versatile 2D level editor |
| 37 | + ]); |
34 | 38 |
|
35 | 39 | programs = { |
36 | 40 | # live streaming |
|
0 commit comments