From ecc12d5b41eb6142e6996f934c07cadbbc4feac9 Mon Sep 17 00:00:00 2001 From: Jonathan Reeve Date: Sun, 26 Aug 2018 14:32:00 -0400 Subject: [PATCH] single-quote instead of double, fixes #356 --- modules/services/polybar.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/polybar.nix b/modules/services/polybar.nix index a187f62a..da2c21fc 100644 --- a/modules/services/polybar.nix +++ b/modules/services/polybar.nix @@ -13,7 +13,7 @@ let let value' = if isBool value then (if value then "true" else "false") - else if (isString value && key != "include-file") then ''"${value}"'' + else if (isString value && key != "include-file") then ''${value}'' else toString value; in "${key}=${value'}";