1
0
Fork 0
NixOS/hosts/greatyamada/services/jellyfin.nix
2025-06-21 15:42:06 +02:00

14 lines
379 B
Nix

{ ... }:
let portDefinitions = import ./_port-definitions.nix;
in {
services = {
jellyfin.enable = true;
nginx.virtualHosts."jellyfin.rcia.dev" = {
locations."/".proxyPass =
"http://127.0.0.1:${toString portDefinitions.jellyfin-http}";
forceSSL = true;
useACMEHost = "rcia.dev";
};
};
users.users.jellyfin.extraGroups = [ "media" ];
}