configuration.nix/home/desktop/programs/aria2.nix

14 lines
287 B
Nix
Raw Normal View History

2023-04-07 19:09:05 +05:30
{ ... }: {
programs.aria2 = {
enable = true;
settings = {
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
};
};
}