add python shit

This commit is contained in:
afoucaultc 2026-07-21 20:10:36 +02:00
commit 8c7024853c
755 changed files with 606 additions and 286846 deletions

View file

@ -0,0 +1,44 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# --- DAW principal ---
lmms
# --- Boîte à rythmes ---
hydrogen
drumgizmo
# --- SoundFonts ---
soundfont-fluid
soundfont-generaluser-gs
# --- Synthés (LV2/VST) ---
surge-xt
zynaddsubfx
yoshimi
helm
vital
# --- Effets LV2 ---
calf
lsp-plugins
x42-plugins
# --- Sampling / édition ---
audacity
# --- Utilitaires ---
qpwgraph
sonic-visualiser
];
# Aide les hôtes LV2/VST à trouver les plugins installés via Nix
home.sessionVariables = {
LV2_PATH = "$HOME/.nix-profile/lib/lv2";
LADSPA_PATH = "$HOME/.nix-profile/lib/ladspa";
DSSI_PATH = "$HOME/.nix-profile/lib/dssi";
VST_PATH = "$HOME/.nix-profile/lib/vst";
VST3_PATH = "$HOME/.nix-profile/lib/vst3";
};
}