Skip to content

Commit

Permalink
remove linux plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoette committed Oct 21, 2024
1 parent 9245f37 commit 0de7bed
Showing 1 changed file with 48 additions and 49 deletions.
97 changes: 48 additions & 49 deletions home-manager/profiles/desktop-audio.nix
Original file line number Diff line number Diff line change
@@ -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 = {

Expand Down Expand Up @@ -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";
# };
# };
};
}

0 comments on commit 0de7bed

Please sign in to comment.