diff options
Diffstat (limited to 'home-manager/features/gui')
| -rw-r--r-- | home-manager/features/gui/bundles/art.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/home-manager/features/gui/bundles/art.nix b/home-manager/features/gui/bundles/art.nix new file mode 100644 index 0000000..c31402a --- /dev/null +++ b/home-manager/features/gui/bundles/art.nix @@ -0,0 +1,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 + ]; + }; +} |
