mirror of
https://github.com/nix-community/home-manager
synced 2024-11-16 08:09:45 +01:00
awesome: fix missing concatenation
This commit is contained in:
parent
26342588ab
commit
f9ac73732b
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ let
|
|||
getLuaPath = lib: dir: "${lib}/${dir}/lua/${pkgs.luaPackages.lua.luaversion}";
|
||||
makeSearchPath = lib.concatMapStrings (path:
|
||||
" --search ${getLuaPath path "share"}"
|
||||
" --search ${getLuaPath path "lib"}"
|
||||
+ " --search ${getLuaPath path "lib"}"
|
||||
);
|
||||
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue