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.
main
Niklas Hambüchen 3 years ago committed by Kerstin
parent bb2a6ec751
commit c7ed7466c3
  1. 2
      nixos/modules/services/networking/smokeping.nix

@ -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.

Loading…
Cancel
Save