modules!!!

This commit is contained in:
Schrottkatze 2023-02-13 12:54:21 +01:00
parent eb1a4786f4
commit 6f1ebdcc9a
24 changed files with 877 additions and 574 deletions

View file

@ -0,0 +1,24 @@
{ 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
digikam
scribus
rawtherapee
];
};
};
}