nix-configs/modules/desktop/creative.nix

27 lines
527 B
Nix
Raw Normal View History

2023-02-13 11:54:21 +00:00
{ config, lib, pkgs, ... }:
let cfg = config.jade.desktop.creative;
in with lib; {
options.jade.desktop.creative = {
enable = mkEnableOption "Enable creative software";
};
config = mkIf cfg.enable {
home-manager.users.jade = { pkgs, ... }: {
home.packages = with pkgs; [
audacity
krita
gimp
inkscape-with-extensions
obs-studio
kdenlive
fspy
scribus
2023-03-11 13:40:29 +00:00
digikam
darktable
2023-02-13 11:54:21 +00:00
rawtherapee
];
};
};
}