Files
nix-config-ryan4yin/home/linux/desktop/creative.nix
2023-05-28 15:08:27 +08:00

22 lines
450 B
Nix

{
pkgs,
config,
...
}:
{
home.packages = with pkgs; [
# creative
# blender # 3d modeling
# gimp # image editing, I prefer using figma in browser instead of this one
inkscape # vector graphics
krita # digital painting
kicad # 3d printing, eletrical engineering
musescore # music notation
reaper # audio production
];
programs = {
# live streaming
obs-studio.enable = true;
};
}