nix-config/modules/nix/audio/ardour.nix
smayzy 07c5d42539
All checks were successful
nixos config pipeline / show-flake (push) Successful in 38s
nixos config pipeline / deploy (push) Successful in 11s
move ardour to an option and pack it with plugins
2026-03-29 16:29:30 +02:00

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