aboutsummaryrefslogtreecommitdiff
path: root/modules/services/window-managers
diff options
context:
space:
mode:
authorLightDiscord <root@arnaud.sh>2018-08-18 20:41:44 +0200
committerRobert Helgesson <robert@rycee.net>2018-08-19 22:42:14 +0200
commitf9ac73732b25dedabb6a0b0fd6ace6598a1dd601 (patch)
treea80044493a3512f9998714f7f17b02facdfe9369 /modules/services/window-managers
parent26342588ab99fdc10bbcc06da18cd331018e2fd5 (diff)
awesome: fix missing concatenation
Diffstat (limited to 'modules/services/window-managers')
-rw-r--r--modules/services/window-managers/awesome.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/window-managers/awesome.nix b/modules/services/window-managers/awesome.nix
index ef01414f07b..a01ee70dce1 100644
--- a/modules/services/window-managers/awesome.nix
+++ b/modules/services/window-managers/awesome.nix
@@ -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