Simon Bruder
db1348014e
MPV is disabled since the override options no longer work. This also applies updated formatting.
14 lines
284 B
Nix
14 lines
284 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
|
|
inkscape # vector graphics editor
|
|
];
|
|
}
|