configuration.nix/home/programs/aria2.nix

15 lines
313 B
Nix
Raw Normal View History

2023-07-11 22:41:18 +05:30
_: {
2023-04-07 19:09:05 +05:30
programs.aria2 = {
enable = true;
settings = {
2023-05-13 00:31:26 +05:30
bt-require-crypto = true;
2023-04-07 19:09:05 +05:30
bt-tracker = "udp://tracker.opentrackr.org:1337/announce";
continue = true;
max-connection-per-server = 8;
split = 8;
min-split-size = "1M";
file-allocation = "falloc";
2023-04-07 19:09:05 +05:30
};
};
}