From 641e328033d9b753ecdd2ae7e27713dbd01d0319 Mon Sep 17 00:00:00 2001 From: triethyl Date: Tue, 16 Sep 2025 17:31:52 -0400 Subject: home-manager: added art feature bundle with art programs --- home-manager/features/gui/bundles/art.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 home-manager/features/gui/bundles/art.nix (limited to 'home-manager/features/gui/bundles') 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 + ]; + }; +} -- cgit v1.2.3