nixos/smokeping: Don't listen on all interfaces by default.

In general, NixOS services are configured such that by default
they are not exposed to the Internet for security, see #100192.
This commit is contained in:
Niklas Hambüchen 2021-11-01 15:51:34 +01:00 committed by Kerstin
parent bb2a6ec751
commit c7ed7466c3

View File

@ -174,7 +174,7 @@ in
};
host = mkOption {
type = types.nullOr types.str;
default = null;
default = "localhost";
example = "192.0.2.1"; # rfc5737 example IP for documentation
description = ''
Host/IP to bind to for the web server.