treewide: use boolToString function

This commit is contained in:
Franz Pletz
2017-04-11 18:18:53 +02:00
parent 54fff9ec1a
commit 3ab45f4b36
40 changed files with 111 additions and 118 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ with lib;
let
cfg = config.services.sslh;
configFile = pkgs.writeText "sslh.conf" ''
verbose: ${if cfg.verbose then "true" else "false"};
verbose: ${boolToString cfg.verbose};
foreground: true;
inetd: false;
numeric: false;