Commit 89c8ef30 authored by Robert Schütz's avatar Robert Schütz Committed by Robert Schütz
Browse files

nixos/imaginary: bind to localhost by default

parent a110ae87
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -10,9 +10,12 @@ in {

    address = mkOption {
      type = types.str;
      default = "";
      description = mdDoc "Bind address. Corresponds to the `-a` flag.";
      example = "localhost";
      default = "localhost";
      description = mdDoc ''
        Bind address. Corresponds to the `-a` flag.
        Set to `""` to bind to all addresses.
      '';
      example = "[::1]";
    };

    port = mkOption {