27 lines
406 B
Nix
27 lines
406 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
users.users.jellyfin.extraGroups = ["nextcloud" "aria2"];
|
|
|
|
services.nginx = {
|
|
virtualHosts = {
|
|
"video.gladtherescake.eu" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:8096";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
services.jellyfin = {
|
|
enable = true;
|
|
};
|
|
}
|