Move HM modules
This commit is contained in:
parent
5db76d0fed
commit
3cf0004b78
110 changed files with 403 additions and 564 deletions
36
modules/hm/pro_audio.nix
Normal file
36
modules/hm/pro_audio.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
user = "bertof";
|
||||
systemLibFolder = "/run/current-system/sw/lib/";
|
||||
userLibFolder =
|
||||
"/nix/var/nix/profiles/per-user/${user}/home-manager/home-path/lib/";
|
||||
variables = {
|
||||
DSSI_PATH = "$HOME/.dssi:${userLibFolder}/dssi:${systemLibFolder}/dssi";
|
||||
LADSPA_PATH =
|
||||
"$HOME/.ladspa:${userLibFolder}/ladspa:${systemLibFolder}/ladspa";
|
||||
LV2_PATH = "$HOME/.lv2:${userLibFolder}/lv2:${systemLibFolder}/lv2";
|
||||
LXVST_PATH = "$HOME/.lxvst:${userLibFolder}/lxvst:${systemLibFolder}/lxvst";
|
||||
VST_PATH = "$HOME/.vst:${userLibFolder}/vst:${systemLibFolder}/vst";
|
||||
VST3_PATH = "$HOME/.vst3:${userLibFolder}/vst3:${systemLibFolder}/vst3";
|
||||
};
|
||||
in
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
ardour breeze-icons carla mamba mixxx rnnoise
|
||||
# zrythm
|
||||
|
||||
# Plugins
|
||||
artyFX autotalent boops cardinal geonkick giada lsp-plugins samplv1 surge
|
||||
surge-XT talentedhack vocproc x42-plugins zita-at1 zyn-fusion zynaddsubfx
|
||||
# helm
|
||||
# noise-repellent
|
||||
# speech-denoiser
|
||||
# stochas
|
||||
# sunvox
|
||||
# tunefish
|
||||
;
|
||||
};
|
||||
|
||||
home.sessionVariables = variables;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue