summaryrefslogtreecommitdiffstats
path: root/modules/lass/xresources.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2015-06-19 01:00:11 +0200
committertv <tv@krebsco.de>2015-06-19 01:00:11 +0200
commit6b5472e49c7bc3fadcf21ae2baad73b9fab643b5 (patch)
treec7844cc7f90282ad231a379dcc0b6b8b48562f43 /modules/lass/xresources.nix
parentf9084414d1c6e5cd71d795ab07a8d0345e3ad620 (diff)
parent85405633fd4b8484415a5eae2fa868570d52aa6c (diff)
Merge remote-tracking branch 'mors/master' into morse-merge
Diffstat (limited to 'modules/lass/xresources.nix')
-rw-r--r--modules/lass/xresources.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/lass/xresources.nix b/modules/lass/xresources.nix
index 1b85830..00a9e5c 100644
--- a/modules/lass/xresources.nix
+++ b/modules/lass/xresources.nix
@@ -12,7 +12,7 @@ with lib;
let
- inherit (import ../../lib { inherit pkgs; }) shell-escape;
+ inherit (import ../../lib { inherit pkgs; inherit lib; }) shell-escape;
inherit (pkgs) writeScript;
in
@@ -43,7 +43,7 @@ in
};
};
- config =
+ config =
let
cfg = config.services.xresources;
xres = concatStringsSep "\n" (attrValues cfg.resources);
@@ -53,6 +53,5 @@ in
echo ${shell-escape xres} | xrdb -merge
'';
};
-
}