nixos-config/roles/creative.nix

34 lines
496 B
Nix
Raw Permalink Normal View History

2025-06-03 16:14:23 +02:00
{
lib,
pkgs,
config,
username,
home-manager,
...
}:
2024-12-20 20:11:22 +01:00
with lib;
let
cfg = config.liv.creative;
2025-06-03 16:14:23 +02:00
in
{
2024-12-20 20:11:22 +01:00
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
kdePackages.kdenlive
orca-slicer
2025-06-03 16:14:23 +02:00
freecad
2024-12-20 20:11:22 +01:00
];
};
};
};
}