summaryrefslogtreecommitdiff
path: root/home-manager/features/gui
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-16 17:31:52 -0400
committertriethyl <triethylammonium@pm.me>2025-09-16 17:31:52 -0400
commit641e328033d9b753ecdd2ae7e27713dbd01d0319 (patch)
tree2fc1ffc2e386e6923a86a73955e660eb8c8cd131 /home-manager/features/gui
parentc50fdd83e19ce932b1a402f81de936a1a0dacf30 (diff)
home-manager: added art feature bundle with art programs
Diffstat (limited to 'home-manager/features/gui')
-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
+ ];
+ };
+}