16 lines
297 B
Nix
16 lines
297 B
Nix
|
{ pkgs, lib, config, ... }: {
|
||
|
options = {
|
||
|
production.enable = lib.mkEnableOption "Enable apps used for production";
|
||
|
};
|
||
|
|
||
|
config = mkIf config.misc.production.enable; {
|
||
|
home.packages = with pkgs; [
|
||
|
krita
|
||
|
inkscape
|
||
|
audacity
|
||
|
blender_4_2
|
||
|
sunvox
|
||
|
];
|
||
|
};
|
||
|
}
|