diff --git a/roles/creative.nix b/roles/creative.nix new file mode 100644 index 0000000..ee0b0c5 --- /dev/null +++ b/roles/creative.nix @@ -0,0 +1,23 @@ +{ lib, pkgs, config, username, home-manager, ... }: +with lib; +let + cfg = config.liv.creative; +in { + options.liv.creative = { + enable = mkEnableOption "Enable creative workflow"; + }; + + config = mkIf cfg.enable { + home-manager = { + users.${username} = { + home.packages = with pkgs; [ + gimp + darktable + audacity + obs-studio + kdenlive + ]; + }; + }; + }; +}