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