mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
15 lines
213 B
Nix
15 lines
213 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
kw.fw.public.tcp.ranges = [{
|
|
from = 32768;
|
|
to = 60999;
|
|
}];
|
|
|
|
kw.fw.private.tcp.ranges = [{
|
|
from = 32768;
|
|
to = 60999;
|
|
}];
|
|
|
|
services.jellyfin.enable = true;
|
|
}
|