From 92d55630835d19d8b98a764cb7cac83bbd15a43b Mon Sep 17 00:00:00 2001 From: Rohan Datar Date: Sun, 12 Jan 2025 16:03:31 -0600 Subject: [PATCH] fix options --- nixarr/jellyseerr/jellyseerr-module/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/nixarr/jellyseerr/jellyseerr-module/default.nix b/nixarr/jellyseerr/jellyseerr-module/default.nix index 8f4b74b..08eab29 100644 --- a/nixarr/jellyseerr/jellyseerr-module/default.nix +++ b/nixarr/jellyseerr/jellyseerr-module/default.nix @@ -28,7 +28,13 @@ in { configDir = mkOption { type = types.str; 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 {