Merge pull request #111428 from helsinki-systems/prayer

nixos/prayer: Add port type
This commit is contained in:
Sandro 2021-01-31 15:05:59 +01:00 committed by GitHub
commit 1b77b735ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,8 @@ in
enable = mkEnableOption "the prayer webmail http server";
port = mkOption {
default = "2080";
default = 2080;
type = types.port;
description = ''
Port the prayer http server is listening to.
'';