summaryrefslogtreecommitdiff
path: root/home-manager/features
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/features')
-rw-r--r--home-manager/features/gui/bundles/art.nix12
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
+ ];
+ };
+}