fix options

This commit is contained in:
Rohan Datar
2025-01-12 16:03:31 -06:00
parent 45a4997693
commit 92d5563083
@@ -28,7 +28,13 @@ in {
configDir = mkOption { configDir = mkOption {
type = types.str; type = types.str;
default = "/var/lib/jellyseerr"; default = "/var/lib/jellyseerr";
description = "The directory where Jellyseerr stores its data files."; description = "The directory where Jellyseerr stores its config data.";
};
port = lib.mkOption {
type = lib.types.port;
default = 5055;
description = ''The port which the Jellyseerr web UI should listen to.'';
}; };
openFirewall = mkOption { openFirewall = mkOption {