Unverified Commit 2f7f695d authored by Naïm Favier's avatar Naïm Favier Committed by GitHub
Browse files

Merge pull request #204001 from nagy/port-types

parents 879ad4a4 dbe8182e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ in {

      port = mkOption {
        default = 8153;
        type = types.int;
        type = types.port;
        description = lib.mdDoc ''
          Specifies port number on which the Go.CD server HTTP interface listens.
        '';
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ in
      };

      port = mkOption {
        type = types.int;
        type = types.port;
        default = 3000;
        description = lib.mdDoc ''
          TCP port the web server should listen to.
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ in {
      };

      port = mkOption {
        type = types.int;
        type = types.port;
        default = 5984;
        description = lib.mdDoc ''
          Defined the port number to listen.
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ in
      };

      port = mkOption {
        type = types.int;
        type = types.port;
        default = 5432;
        description = lib.mdDoc ''
          The port on which PostgreSQL listens.
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ in
    services.factorio = {
      enable = mkEnableOption (lib.mdDoc name);
      port = mkOption {
        type = types.int;
        type = types.port;
        default = 34197;
        description = lib.mdDoc ''
          The port to which the service should bind.
Loading