14 lines
293 B
Nix
14 lines
293 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
blender # 3d animation
|
||
|
darktable # photo development
|
||
|
gimp
|
||
|
gimpPlugins.gmic # bitmap editor
|
||
|
krita # drawing
|
||
|
openscad # parametric/procedural 3d modelling
|
||
|
unstable.inkscape # vector graphics editor
|
||
|
];
|
||
|
}
|