{ pkgs, ... }:
{
+ imports = [
+ ./image.nix
+ ];
home.packages = [
#pkgs.blender
pkgs.darktable
pkgs.gcolor2
pkgs.geeqie
- pkgs.gimp
+ (pkgs.gimp-with-plugins.override {
+ plugins = with pkgs.gimpPlugins; [
+ gmic
+ ];
+ })
pkgs.gpicview
- pkgs.graphviz
- pkgs.imagemagick
+ pkgs.gthumb
pkgs.inkscape
- pkgs.libavif
- pkgs.optipng
];
}