summaryrefslogtreecommitdiff
path: root/home-manager/features/gui/bundles/art.nix
blob: b012675caee2bd49dec482effda2859e9630b6b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
    ];
  };
}