Files
nix-config/modules/nix/audio/ardour.nix
T
smayzy 5210fb36a0
nixos config pipeline / show-flake (push) Successful in 20s
nixos config pipeline / deploy (push) Successful in 53s
add tuxguitar
2026-08-24 12:55:05 +02:00

31 lines
456 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
tuxguitar
caps
lsp-plugins
calf
dragonfly-reverb
tap-plugins
hydrogen
];
};
}