move ardour to an option and pack it with plugins
All checks were successful
nixos config pipeline / show-flake (push) Successful in 38s
nixos config pipeline / deploy (push) Successful in 11s

This commit is contained in:
smayzy 2026-03-29 16:29:30 +02:00
parent b24fc7bd16
commit 07c5d42539
3 changed files with 30 additions and 2 deletions

View File

@ -0,0 +1,28 @@
{
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
];
};
}

View File

@ -2,5 +2,6 @@
{
imports = [
./pipewire.nix
./ardour.nix
];
}

View File

@ -32,6 +32,7 @@ in
wireshark.enable = true;
alacritty.enable = true;
mail.enable = true;
ardour.enable = true;
};
programs.firefox.enable = true;
environment.systemPackages = with pkgs; [
@ -57,8 +58,6 @@ in
qbittorrent
android-tools
gdb
ardour
guitarix
];
};
}