about summary refs log tree commit diff
path: root/nixos/modules/services/misc/osrm.nix
diff options
context:
space:
mode:
authorDaniel Nagy <danielnagy@posteo.de>2022-11-30 17:15:00 +0100
committerDaniel Nagy <danielnagy@posteo.de>2022-12-01 22:30:00 +0100
commitdbe8182e7433374b5ae7b5454126ce46211f0f03 (patch)
treee5e91a4a1970de4693979d5ac0830cac7cda0e15 /nixos/modules/services/misc/osrm.nix
parent9063accddd2e68dcc71032459a58399e977374c9 (diff)
treewide: switch to port type for nixos modules
Diffstat (limited to 'nixos/modules/services/misc/osrm.nix')
-rw-r--r--nixos/modules/services/misc/osrm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/osrm.nix b/nixos/modules/services/misc/osrm.nix
index bcfb868422cc7..12c908a761e32 100644
--- a/nixos/modules/services/misc/osrm.nix
+++ b/nixos/modules/services/misc/osrm.nix
@@ -21,7 +21,7 @@ in
     };
 
     port = mkOption {
-      type = types.int;
+      type = types.port;
       default = 5000;
       description = lib.mdDoc "Port on which the web server will run.";
     };