aboutsummaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/common/optional/sound.nix17
1 files changed, 1 insertions, 16 deletions
diff --git a/hosts/common/optional/sound.nix b/hosts/common/optional/sound.nix
index 61ab23f..c54461a 100644
--- a/hosts/common/optional/sound.nix
+++ b/hosts/common/optional/sound.nix
@@ -1,4 +1,4 @@
-{ lib, pkgs, ... }:
+{ pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
@@ -27,20 +27,5 @@
yoshimi
zynaddsubfx
];
-
- variables = let makePluginPath = format:
- (lib.strings.makeSearchPath format [
- "$HOME/.nix-profile/lib"
- "/run/current-system/sw/lib"
- "/etc/profiles/per-user/$USER/lib"
- ]) + ":$HOME/.${format}";
- in {
- DSSI_PATH = makePluginPath "dssi";
- LADSPA_PATH = makePluginPath "ladspa";
- LV2_PATH = makePluginPath "lv2";
- LXVST_PATH = makePluginPath "lxvst";
- VST_PATH = makePluginPath "vst";
- VST3_PATH = makePluginPath "vst3";
- };
};
}