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'}";