Skip to content

Commit

Permalink
Merge pull request #111420 from helsinki-systems/mailpile
Browse files Browse the repository at this point in the history
nixos/mailpile add types switch port to port type
  • Loading branch information
SuperSandro2000 committed Jan 31, 2021
2 parents 60b597a + f50a26d commit 49f5e87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nixos/modules/services/networking/mailpile.nix
Expand Up @@ -21,11 +21,13 @@ in
enable = mkEnableOption "Mailpile the mail client";

hostname = mkOption {
type = types.str;
default = "localhost";
description = "Listen to this hostname or ip.";
};
port = mkOption {
default = "33411";
type = types.port;
default = 33411;
description = "Listen on this port.";
};
};
Expand Down

0 comments on commit 49f5e87

Please sign in to comment.