about summary refs log tree commit diff
path: root/nixos/modules/services/networking/murmur.nix
diff options
context:
space:
mode:
authorDaniel Nagy <danielnagy@posteo.de>2021-06-18 17:30:33 +0200
committerDaniel Nagy <danielnagy@posteo.de>2021-06-18 17:30:33 +0200
commit06962df4d2e5ccd3ab92f86f22036c6cf4742fc7 (patch)
tree5441bb19dae2ef9c2d6e45a5fea04fe79ce8389d /nixos/modules/services/networking/murmur.nix
parent50ba0ac3d6ce702e7e7488cd5edcf89f67496112 (diff)
nixos/murmur: use `port` type
Diffstat (limited to 'nixos/modules/services/networking/murmur.nix')
-rw-r--r--nixos/modules/services/networking/murmur.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/murmur.nix b/nixos/modules/services/networking/murmur.nix
index b03630208df83..f8bb878ec65da 100644
--- a/nixos/modules/services/networking/murmur.nix
+++ b/nixos/modules/services/networking/murmur.nix
@@ -98,7 +98,7 @@ in
       };
 
       port = mkOption {
-        type = types.int;
+        type = types.port;
         default = 64738;
         description = "Ports to bind to (UDP and TCP).";
       };