mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
chore(mediabox): re-add service ports
This commit is contained in:
parent
f1018dfbff
commit
1bae94505d
4 changed files with 53 additions and 10 deletions
14
modules/nixos/lidarr.nix
Normal file
14
modules/nixos/lidarr.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.options) mkOption;
|
||||
in {
|
||||
options.services.lidarr = with lib.types; {
|
||||
port = mkOption {
|
||||
type = port;
|
||||
default = 8686;
|
||||
readOnly = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
14
modules/nixos/prowlarr.nix
Normal file
14
modules/nixos/prowlarr.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.options) mkOption;
|
||||
in {
|
||||
options.services.prowlarr = with lib.types; {
|
||||
port = mkOption {
|
||||
type = port;
|
||||
default = 9696;
|
||||
readOnly = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
14
modules/nixos/readarr.nix
Normal file
14
modules/nixos/readarr.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.options) mkOption;
|
||||
in {
|
||||
options.services.readarr = with lib.types; {
|
||||
port = mkOption {
|
||||
type = port;
|
||||
default = 8787;
|
||||
readOnly = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue