nixos/prayer: Add port type

This commit is contained in:
Fritz Otlinghaus 2021-01-31 12:01:41 +01:00
parent 4015c5ca9c
commit f0932a6c41
No known key found for this signature in database
GPG key ID: 1E5F98946FB1444E

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.
'';