NixOS-Config/nixos/package-configs/jellyfin/configuration.nix

25 lines
345 B
Nix
Raw Normal View History

2024-01-01 23:23:53 +01:00
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
services.nginx = {
virtualHosts = {
"video.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:8096";
};
};
};
};
services.jellyfin = {
enable = true;
};
}