nixos/prometheus: unbreak alertmanager default config

The current default value of listenAddress = null blows up:

$ nixos-rebuild build
error: cannot coerce null to a string, at
.../nixpkgs/nixos/modules/services/monitoring/prometheus/alertmanager.nix:97:16

With listenAddress = "" we use the same default as upstream and there is
no blow up :-)

+2 -2
+2 -2
nixos/modules/services/monitoring/prometheus/alertmanager.nix
··· 62 }; 63 64 listenAddress = mkOption { 65 - type = types.nullOr types.str; 66 - default = null; 67 description = '' 68 Address to listen on for the web interface and API. 69 '';
··· 62 }; 63 64 listenAddress = mkOption { 65 + type = types.str; 66 + default = ""; 67 description = '' 68 Address to listen on for the web interface and API. 69 '';