nixos/silverbullet: use `types.port`

h7x4 24c79fd3 a7d64941

Changed files
+1 -1
nixos
modules
services
web-apps
+1 -1
nixos/modules/services/web-apps/silverbullet.nix
···
};
listenPort = lib.mkOption {
-
type = lib.types.int;
default = 3000;
description = "Port to listen on.";
};
···
};
listenPort = lib.mkOption {
+
type = lib.types.port;
default = 3000;
description = "Port to listen on.";
};