mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
fix(mediabox): mediatomb
This commit is contained in:
parent
1d038633ce
commit
ef5306904c
9 changed files with 61 additions and 17 deletions
14
modules/nixos/plex.nix
Normal file
14
modules/nixos/plex.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.options) mkOption;
|
||||
in {
|
||||
options.services.plex = with lib.types; {
|
||||
port = mkOption {
|
||||
type = port;
|
||||
default = 32400;
|
||||
readOnly = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue