feat: adds creative role

This commit is contained in:
Ahwx 2024-12-20 20:11:22 +01:00
parent 05d1af376e
commit ac991e3860

23
roles/creative.nix Normal file
View file

@ -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
];
};
};
};
}