commit be43ed1788307798eb457c1fb5596dc95416e560
parent 5da383a6cf4da1bcd9b45cd1c9d8821deb5e929b
Author: Vincent Demeester <vincent@sbr.pm>
Date: Sat, 4 Aug 2018 15:39:27 +0200
Fix i3status package missing…
… Using `${pkgs.i3status}/bin/i3status` instead of the string
`i3status` makes nix installing the package.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/i3.nix b/i3.nix
@@ -60,7 +60,7 @@
bars = [{
mode = "hide";
position = "bottom";
- statusCommand = "i3status";
+ statusCommand = "${pkgs.i3status}/bin/i3status";
colors = {
background = "#073642";
statusline = "#eee8d5";