Add seedbox

This commit is contained in:
muon 2026-01-02 19:24:15 +00:00
parent 4744f39ad7
commit 08344a4843
4 changed files with 218 additions and 10 deletions

View file

@ -1,8 +1,13 @@
{ pkgs, lib, config, ... }: {
{
pkgs,
lib,
config,
...
}: {
options.mods.server = with lib; {
local.ports = mkOption {
type = types.attrsOf (types.ints.u16);
default = { };
default = {};
};
};
config = {
@ -19,6 +24,7 @@
ntfy = 3010;
audio = 3011;
atuin = 3012;
stream = 3013;
search = 8081;
videos = 8082;
@ -33,6 +39,7 @@
prowlarr = 5006;
flaresolverr = 5007;
torrent = 5008;
seedbox = 5009;
};
};
}