blob: c31402aa611f6c31e2e7d60e3c27ae61b89c72d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{config, lib, pkgs}: let
cfg = config.features.gui.bundles.art;
in {
options.features.gui.bundles.art.enable = lib.mkEnableOption "the art bundle";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
gimp
krita
inkscape
];
};
}
|