mirror of
https://git.gay/xqtc/nixos-config
synced 2025-03-11 05:47:07 +01:00
18 lines
342 B
Nix
18 lines
342 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.jellyfin.enable = true;
|
|
services.jellyfin.user = "xqtc";
|
|
services.nginx.virtualHosts."jellyfin.fritz.box" = {
|
|
locations."/" = {
|
|
extraConfig = ''
|
|
proxy_set_header Host $host;
|
|
'';
|
|
proxyPass = "http://127.0.0.1:8096";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
}
|