sourcephile
/
git
/
julm
/
julm-nix.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
julm: oignon: gcompris: install
[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.gcolor2
10
pkgs.geeqie
11
(pkgs.gimp-with-plugins.override {
12
plugins = with pkgs.gimpPlugins; [
13
gmic
14
];
15
})
16
pkgs.gpicview
17
pkgs.gthumb
18
pkgs.inkscape
19
];
20
}