nixfiles/home/apps/aria2.nix

10 lines
137 B
Nix
Raw Normal View History

2022-03-02 16:19:09 +00:00
{ pkgs, ... }: {
programs.aria2 = {
enable = true;
settings = {
enable-dht = true;
seed-ratio = 5.0;
};
};
}