summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 12:01:41 +0100
committerFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 12:01:41 +0100
commitf0932a6c412e92557113dfc0f4d1471a4f837bb9 (patch)
tree35b9b31e71cb766a879de0e36dfe483c976c2eb1 /nixos
parent4015c5ca9c6ec7d4aa765c97b4413b478daa278b (diff)
nixos/prayer: Add port type
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/prayer.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/prayer.nix b/nixos/modules/services/networking/prayer.nix
index f04dac01d9b8..ae9258b27122 100644
--- a/nixos/modules/services/networking/prayer.nix
+++ b/nixos/modules/services/networking/prayer.nix
@@ -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.
'';