nixos/sslh: rename 'host' to 'listenAddress'

More descriptive option name.

+3 -2
+1
nixos/modules/rename.nix
··· 21 (mkRenamedOptionModule [ "services" "mpd" "network" "host" ] [ "services" "mpd" "network" "listenAddress" ]) 22 (mkRenamedOptionModule [ "services" "neo4j" "host" ] [ "services" "neo4j" "listenAddress" ]) 23 (mkRenamedOptionModule [ "services" "shout" "host" ] [ "services" "shout" "listenAddress" ]) 24 (mkRenamedOptionModule [ "services" "statsd" "host" ] [ "services" "statsd" "listenAddress" ]) 25 (mkRenamedOptionModule [ "services" "subsonic" "host" ] [ "services" "subsonic" "listenAddress" ]) 26
··· 21 (mkRenamedOptionModule [ "services" "mpd" "network" "host" ] [ "services" "mpd" "network" "listenAddress" ]) 22 (mkRenamedOptionModule [ "services" "neo4j" "host" ] [ "services" "neo4j" "listenAddress" ]) 23 (mkRenamedOptionModule [ "services" "shout" "host" ] [ "services" "shout" "listenAddress" ]) 24 + (mkRenamedOptionModule [ "services" "sslh" "host" ] [ "services" "sslh" "listenAddress" ]) 25 (mkRenamedOptionModule [ "services" "statsd" "host" ] [ "services" "statsd" "listenAddress" ]) 26 (mkRenamedOptionModule [ "services" "subsonic" "host" ] [ "services" "subsonic" "listenAddress" ]) 27
+2 -2
nixos/modules/services/networking/sslh.nix
··· 16 17 listen: 18 ( 19 - { host: "${cfg.host}"; port: "${toString cfg.port}"; } 20 ); 21 22 ${cfg.appendConfig} ··· 56 description = "PID file path for sslh daemon."; 57 }; 58 59 - host = mkOption { 60 type = types.str; 61 default = config.networking.hostName; 62 description = "Listening hostname.";
··· 16 17 listen: 18 ( 19 + { host: "${cfg.listenAddress}"; port: "${toString cfg.port}"; } 20 ); 21 22 ${cfg.appendConfig} ··· 56 description = "PID file path for sslh daemon."; 57 }; 58 59 + listenAddress = mkOption { 60 type = types.str; 61 default = config.networking.hostName; 62 description = "Listening hostname.";