20 lines
449 B
Nix
20 lines
449 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
xyno.services.caddy.wildcardHosts."hailsatan.eu".hosts.j.extraConfig =
|
|
"reverse_proxy http://[::1]:8096";
|
|
xyno.impermanence.directories = [ config.services.jellyfin.dataDir ];
|
|
xyno.services.authentik.ldapApps.jellyfin = {
|
|
name = "Lucy+";
|
|
meta_description = "Jellyfin";
|
|
meta_launch_url = "https://j.hailsatan.eu";
|
|
};
|
|
services.jellyfin = {
|
|
enable = true;
|
|
group = "users";
|
|
};
|
|
}
|