diff options
| author | triethyl <triethylammonium@pm.me> | 2025-09-16 17:31:52 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-09-16 17:31:52 -0400 |
| commit | 641e328033d9b753ecdd2ae7e27713dbd01d0319 (patch) | |
| tree | 2fc1ffc2e386e6923a86a73955e660eb8c8cd131 /home-manager/features/gui | |
| parent | c50fdd83e19ce932b1a402f81de936a1a0dacf30 (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.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 + ]; + }; +} |
