{ pkgs, lib, config, ... }: { options = { production.enable = lib.mkEnableOption "Enable apps used for production"; }; config = mkIf config.misc.production.enable; { home.packages = with pkgs; [ krita inkscape audacity blender_4_2 sunvox ]; }; }