Try aria2
This commit is contained in:
parent
9d2f6da9a0
commit
e5f11f35f1
3 changed files with 31 additions and 15 deletions
|
|
@ -3,18 +3,32 @@
|
|||
{
|
||||
hardware.opengl.enable = true;
|
||||
|
||||
services = let const = config.constants; in {
|
||||
jellyfin = {
|
||||
enable = true;
|
||||
user = const.userName;
|
||||
services =
|
||||
let
|
||||
const = config.constants;
|
||||
ports = const.port;
|
||||
usr = const.userName;
|
||||
in
|
||||
{
|
||||
aria2 = {
|
||||
enable = true;
|
||||
extraArguments = "--rpc-listen-all";
|
||||
rpcListenPort = ports.aria2;
|
||||
rpcSecretFile = config.sops.secrets.aria2.path;
|
||||
};
|
||||
jellyfin = {
|
||||
enable = true;
|
||||
user = usr;
|
||||
};
|
||||
jellyseerr = {
|
||||
enable = true;
|
||||
port = ports.jellyseerr;
|
||||
};
|
||||
radarr = {
|
||||
enable = true;
|
||||
user = usr;
|
||||
};
|
||||
};
|
||||
jellyseerr = {
|
||||
enable = true;
|
||||
port = const.port.jellyseerr;
|
||||
};
|
||||
radarr = {
|
||||
enable = true;
|
||||
user = const.userName;
|
||||
};
|
||||
};
|
||||
|
||||
sops.secrets.aria2 = { };
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue