lol

nixos/cryptpad: use `types.port`

h7x4 25332ea5 c31d264b

+2 -2
+2 -2
nixos/modules/services/web-apps/cryptpad.nix
··· 75 75 description = "Address on which the Node.js server should listen"; 76 76 }; 77 77 httpPort = mkOption { 78 - type = types.int; 78 + type = types.port; 79 79 default = 3000; 80 80 description = "Port on which the Node.js server should listen"; 81 81 }; 82 82 websocketPort = mkOption { 83 - type = types.int; 83 + type = types.port; 84 84 default = 3003; 85 85 description = "Port for the websocket that needs to be separate"; 86 86 };