configuration.nix/home/downloader.nix

21 lines
355 B
Nix
Raw Normal View History

2023-03-15 22:11:59 +05:30
{ ... }: {
programs = {
aria2 = {
enable = true;
settings = {
continue = true;
file-allocation = "falloc";
max-connection-per-server = 8;
split = 8;
min-split-size = "1M";
};
};
yt-dlp = {
enable = true;
settings = {
downloader = "aria2c";
};
};
};
}