27 lines
471 B
Nix
27 lines
471 B
Nix
{
|
|
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";
|
|
# };
|
|
# };
|
|
# };
|
|
# };
|
|
}
|