29 lines
425 B
Nix
29 lines
425 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf mkOption types;
|
|
in
|
|
{
|
|
options.smayzy.ardour.enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "ardour suite";
|
|
};
|
|
|
|
config = mkIf config.smayzy.ardour.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
ardour
|
|
guitarix
|
|
caps
|
|
lsp-plugins
|
|
calf
|
|
dragonfly-reverb
|
|
tap-plugins
|
|
];
|
|
};
|
|
}
|