diff --git a/home-manager/profiles/desktop-audio.nix b/home-manager/profiles/desktop-audio.nix index bb5792a..a4fa520 100644 --- a/home-manager/profiles/desktop-audio.nix +++ b/home-manager/profiles/desktop-audio.nix @@ -1,20 +1,19 @@ { pkgs, lib, config, ... }: # , mayniklas with lib; -let - plugins = with pkgs; [ - # Instruments - x42-avldrums - zynaddsubfx +# let +# plugins = with pkgs; [ +# # Instruments +# x42-avldrums +# zynaddsubfx - # Effects - calf - lsp-plugins - distrho - zam-plugins - talentedhack - gxplugins-lv2 - ]; -in +# # Effects +# calf +# lsp-plugins +# zam-plugins +# talentedhack +# gxplugins-lv2 +# ]; +# in { config = { @@ -80,42 +79,42 @@ in mayniklas.set-performance mayniklas.vs-fix ] - ++ plugins; + # ++ plugins; # Place vst, vst3, clap, lv2 and ladspa plugins in the according directories - home.file = - let - all-audio-plugins = pkgs.symlinkJoin { - name = "all-audio-plugins"; - paths = plugins; - }; - in - { - all-lv2 = { - recursive = true; - source = "${all-audio-plugins}/lib/lv2"; - target = ".lv2"; - }; - all-clap = { - recursive = true; - source = "${all-audio-plugins}/lib/clap"; - target = ".clap"; - }; - all-vst = { - recursive = true; - source = "${all-audio-plugins}/lib/vst"; - target = ".vst"; - }; - all-vst3 = { - recursive = true; - source = "${all-audio-plugins}/lib/vst3"; - target = ".vst3"; - }; - all-ladspa = { - recursive = true; - source = "${all-audio-plugins}/lib/ladspa"; - target = ".ladspa"; - }; - }; + # home.file = + # let + # all-audio-plugins = pkgs.symlinkJoin { + # name = "all-audio-plugins"; + # paths = plugins; + # }; + # in + # { + # all-lv2 = { + # recursive = true; + # source = "${all-audio-plugins}/lib/lv2"; + # target = ".lv2"; + # }; + # all-clap = { + # recursive = true; + # source = "${all-audio-plugins}/lib/clap"; + # target = ".clap"; + # }; + # all-vst = { + # recursive = true; + # source = "${all-audio-plugins}/lib/vst"; + # target = ".vst"; + # }; + # all-vst3 = { + # recursive = true; + # source = "${all-audio-plugins}/lib/vst3"; + # target = ".vst3"; + # }; + # all-ladspa = { + # recursive = true; + # source = "${all-audio-plugins}/lib/ladspa"; + # target = ".ladspa"; + # }; + # }; }; }