configuration.nix/home/downloader.nix

21 lines
386 B
Nix
Raw Normal View History

2023-03-15 22:11:59 +05:30
{ ... }: {
programs = {
aria2 = {
enable = true;
settings = {
2023-03-20 21:24:56 +05:30
bt-tracker = "udp://tracker.opentrackr.org:1337/announce";
2023-03-15 22:11:59 +05:30
continue = true;
max-connection-per-server = 8;
split = 8;
min-split-size = "1M";
};
};
yt-dlp = {
enable = true;
settings = {
downloader = "aria2c";
};
};
};
}