nixos-config/modules/creative.nix

14 lines
293 B
Nix
Raw Normal View History

2020-08-22 17:44:39 +02:00
{ 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
];
}