45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ pkgs, ... }:
|
|
let
|
|
variables = {
|
|
DSSI_PATH = "$HOME/.dssi:$HOME/.nix-profile/lib/dssi:/run/current-system/sw/lib/dssi";
|
|
LADSPA_PATH = "$HOME/.ladspa:$HOME/.nix-profile/lib/ladspa:/run/current-system/sw/lib/ladspa";
|
|
LV2_PATH = "$HOME/.lv2:$HOME/.nix-profile/lib/lv2:/run/current-system/sw/lib/lv2";
|
|
LXVST_PATH = "$HOME/.lxvst:$HOME/.nix-profile/lib/lxvst:/run/current-system/sw/lib/lxvst";
|
|
VST_PATH = "$HOME/.vst:$HOME/.nix-profile/lib/vst:/run/current-system/sw/lib/vst";
|
|
VST3_PATH = "$HOME/.vst3:$HOME/.nix-profile/lib/vst3:/run/current-system/sw/lib/vst3";
|
|
};
|
|
in
|
|
{
|
|
home.packages = with pkgs; [
|
|
carla
|
|
rnnoise
|
|
ardour
|
|
# zrythm
|
|
mixxx
|
|
|
|
# Plugins
|
|
# artyFX
|
|
autotalent
|
|
boops
|
|
# cardinal
|
|
geonkick
|
|
helm
|
|
(lsp-plugins.overrideAttrs (old: { version = "1.2.0"; }))
|
|
# noise-repellent
|
|
samplv1
|
|
# speech-denoiser
|
|
# stochas
|
|
sunvox
|
|
# surge
|
|
surge-XT
|
|
talentedhack
|
|
tunefish
|
|
vocproc
|
|
x42-plugins
|
|
zita-at1
|
|
zynaddsubfx
|
|
zyn-fusion
|
|
];
|
|
|
|
home.sessionVariables = variables;
|
|
}
|