Home Gen58 @ 2025-10-01-23:57 by jonas@monolith

This commit is contained in:
2025-10-02 00:03:54 +02:00
parent 47b206d549
commit c5d1bd8a52
3 changed files with 85 additions and 15 deletions

View File

@@ -43,6 +43,13 @@ in {
Enable heavy video editing tools.
'';
};
daws = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Enable DAWs (currently bitwig beta)
'';
};
};
config = lib.mkIf cfg.enable {
@@ -61,6 +68,7 @@ in {
davinci-resolve
hive.transcode-davinci-resolve
kdePackages.kdenlive
];
]
++ lib.optional cfg.daws bitwig-studio6-latest;
};
}