]> Git — Sourcephile - julm/julm-nix.git/blob - home-manager/profiles/drawing.nix
nix: update to nixos-24.11
[julm/julm-nix.git] / home-manager / profiles / drawing.nix
1 { pkgs, ... }:
2 {
3 imports = [
4 ./image.nix
5 ];
6 home.packages = [
7 #pkgs.blender
8 pkgs.darktable
9 pkgs.gcolor3
10 pkgs.eyedropper
11 pkgs.geeqie
12 (pkgs.gimp-with-plugins.override {
13 plugins = with pkgs.gimpPlugins; [
14 gmic
15 ];
16 })
17 pkgs.gthumb
18 pkgs.loupe
19 pkgs.image-roll
20 pkgs.inkscape
21 ];
22 }