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 @@
{
config,
pkgs,
...
}: {
users.users = {
aria2.extraGroups = ["jellyfin" "nextcloud"];
};
services.aria2 = {
enable = true;
downloadDir = "/var/lib/media";
rpcListenPort = 6969;
};
# services.nginx = {
# virtualHosts = {
# "aria2.gladtherescake.eu" = {
# forceSSL = true;
# enableACME = true;
# locations."/" = {
# proxyPass = "http://localhost:6800";
# };
# };
# };
# };
}