configuration.nix/home/programs/aria2.nix

17 lines
325 B
Nix
Raw Permalink Normal View History

2023-07-11 22:41:18 +05:30
_: {
2023-04-07 19:09:05 +05:30
programs.aria2 = {
enable = true;
settings = {
continue = true;
max-connection-per-server = 8;
split = 8;
min-split-size = "1M";
file-allocation = "falloc";
2024-03-29 13:15:21 +05:30
check-integrity = true;
console-log-level = "warn";
log-level = "notice";
log = "-";
2023-04-07 19:09:05 +05:30
};
};
}