update default port
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
with lib; let
|
||||
cfg = config.nixarr.flaresolverr;
|
||||
nixarr = config.nixarr;
|
||||
defaultPort = 8191
|
||||
in {
|
||||
options.nixarr.flaresolverr = {
|
||||
enable = mkOption {
|
||||
@@ -24,7 +25,7 @@ in {
|
||||
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
default = 8191;
|
||||
default = defaultPort;
|
||||
example = 12345;
|
||||
description = "Flaresolverr port.";
|
||||
};
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
with lib; let
|
||||
cfg = config.nixarr.jellyseerr;
|
||||
nixarr = config.nixarr;
|
||||
defaultPort = 5055;
|
||||
in {
|
||||
options.nixarr.jellyseerr = {
|
||||
enable = mkOption {
|
||||
@@ -24,7 +25,7 @@ in {
|
||||
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
default = 5055;
|
||||
default = defaultPort;
|
||||
example = 12345;
|
||||
description = "Jellyseerr web-UI port.";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user