summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-31 15:05:59 +0100
committerGitHub <noreply@github.com>2021-01-31 15:05:59 +0100
commit1b77b735ea70c3dfbdab3eaa79aee48d75d3e162 (patch)
tree239d405777ebaf0373ee09424d9bdc185b9fefc4 /nixos
parentcc80d6d5d47765d9609439331e77fa37595b3d47 (diff)
parentf0932a6c412e92557113dfc0f4d1471a4f837bb9 (diff)
Merge pull request #111428 from helsinki-systems/prayer
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.
'';