Pro audio + fixes
This commit is contained in:
parent
1f49192ab3
commit
6bbfc7cdc0
11 changed files with 181 additions and 37 deletions
43
modules/pro_audio.nix
Normal file
43
modules/pro_audio.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ 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; [
|
||||
ardour
|
||||
|
||||
carla
|
||||
|
||||
artyFX
|
||||
boops
|
||||
geonkick
|
||||
lsp-plugins
|
||||
noise-repellent
|
||||
speech-denoiser
|
||||
stochas
|
||||
surge
|
||||
talentedhack
|
||||
tunefish
|
||||
x42-plugins
|
||||
|
||||
];
|
||||
|
||||
home.sessionVariables = variables;
|
||||
|
||||
# home.file = {
|
||||
# ".lv2" = { source = ~/.nix-profile/lib/lv2; };
|
||||
# # ".dssi" = { source= ~/.nix-profile/lib/dssi; };
|
||||
# ".ladspa" = { source = ~/.nix-profile/lib/ladspa; };
|
||||
# # ".lxvst" = { source = ~/.nix-profile/lib/lxvst; };
|
||||
# ".vst" = { source = ~/.nix-profile/lib/vst; };
|
||||
# ".vst3" = { source = ~/.nix-profile/lib/vst3; };
|
||||
# };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue