WIP custom vital + zsh and audio configs
Signed-off-by: Filippo Berto <berto.f@protonmail.com>
This commit is contained in:
parent
84ed0d7a01
commit
4d42bdad1c
8 changed files with 68 additions and 26 deletions
7
hm_modules/any_nix_shell.nix
Normal file
7
hm_modules/any_nix_shell.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.zsh.enable = true;
|
||||
programs.zsh.initExtra = ''
|
||||
source <(${pkgs.any-nix-shell}/bin/any-nix-shell zsh --info-right)
|
||||
'';
|
||||
}
|
||||
|
|
@ -1,28 +1,31 @@
|
|||
{ 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:$NIX_USER_PROFILE_DIR/home-manager/home-path/lib/dssi:/run/current-system/sw/lib/dssi";
|
||||
LADSPA_PATH = "$HOME/.ladspa:$NIX_USER_PROFILE_DIR/home-manager/home-path/lib/ladspa:/run/current-system/sw/lib/ladspa";
|
||||
LV2_PATH = "$HOME/.lv2:$NIX_USER_PROFILE_DIR/home-manager/home-path/lib/lv2:/run/current-system/sw/lib/lv2";
|
||||
LXVST_PATH = "$HOME/.lxvst:$NIX_USER_PROFILE_DIR/home-manager/home-path/lib/lxvst:/run/current-system/sw/lib/lxvst";
|
||||
VST_PATH = "$HOME/.vst:$NIX_USER_PROFILE_DIR/home-manager/home-path/lib/vst:/run/current-system/sw/lib/vst";
|
||||
VST3_PATH = "$HOME/.vst3:$NIX_USER_PROFILE_DIR/home-manager/home-path/lib/vst3:/run/current-system/sw/lib/vst3";
|
||||
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 = with pkgs; [
|
||||
home.packages = with pkgs.unstable; [
|
||||
carla
|
||||
rnnoise
|
||||
ardour
|
||||
unstable.zrythm
|
||||
unstable.breeze-icons
|
||||
zrythm
|
||||
breeze-icons
|
||||
mixxx
|
||||
|
||||
# Plugins
|
||||
# artyFX
|
||||
artyFX
|
||||
autotalent
|
||||
boops
|
||||
unstable.cardinal
|
||||
cardinal
|
||||
geonkick
|
||||
helm
|
||||
lsp-plugins
|
||||
|
|
@ -31,9 +34,9 @@ in
|
|||
# speech-denoiser
|
||||
# stochas
|
||||
# sunvox
|
||||
# surge
|
||||
unstable.giada
|
||||
unstable.surge-XT
|
||||
surge
|
||||
giada
|
||||
surge-XT
|
||||
talentedhack
|
||||
tunefish
|
||||
vocproc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue