aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2025-01-03 15:40:23 -0800
committerMark Nipper <nipsy@bitgnome.net>2025-01-03 15:40:23 -0800
commitaf16f1db38b186d563335104867dea3752095ba3 (patch)
tree5b6879edf30715ff4767705dc6af1517ae48923b /hosts/common/optional
parentb326ed527c7229b1a08844f1f5fd968059fcae9f (diff)
downloadnix-af16f1db38b186d563335104867dea3752095ba3.tar
nix-af16f1db38b186d563335104867dea3752095ba3.tar.gz
nix-af16f1db38b186d563335104867dea3752095ba3.tar.bz2
nix-af16f1db38b186d563335104867dea3752095ba3.tar.lz
nix-af16f1db38b186d563335104867dea3752095ba3.tar.xz
nix-af16f1db38b186d563335104867dea3752095ba3.tar.zst
nix-af16f1db38b186d563335104867dea3752095ba3.zip
Add plugin paths to environment
Diffstat (limited to '')
-rw-r--r--hosts/common/optional/sound.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/common/optional/sound.nix b/hosts/common/optional/sound.nix
index 61a5490..61ab23f 100644
--- a/hosts/common/optional/sound.nix
+++ b/hosts/common/optional/sound.nix
@@ -1,4 +1,4 @@
-{ pkgs, ... }:
+{ lib, pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
@@ -29,7 +29,7 @@
];
variables = let makePluginPath = format:
- (lib.makeSearchPath format [
+ (lib.strings.makeSearchPath format [
"$HOME/.nix-profile/lib"
"/run/current-system/sw/lib"
"/etc/profiles/per-user/$USER/lib"