nix-config/modules/nix/audio/ardour.nix
smayzy fbf381f476
All checks were successful
nixos config pipeline / show-flake (push) Successful in 39s
nixos config pipeline / deploy (push) Successful in 53s
add hydrogen
2026-04-09 19:17:23 +02:00

30 lines
440 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
hydrogen
];
};
}