Small refactor and added prowlarr

This commit is contained in:
Lillian-Violet 2024-01-04 14:49:45 +01:00
parent 7f901a2938
commit 177ebd2350
15 changed files with 76 additions and 88 deletions

View file

@ -0,0 +1,26 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
users.users.jellyfin.extraGroups = ["nextcloud"];
services.nginx = {
virtualHosts = {
"video.gladtherescake.eu" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:8096";
};
};
};
};
services.jellyfin = {
enable = true;
};
}