nixfiles/home/apps/aria2.nix
ChaotiCryptidz ac51f8cdb5
*honk*
2022-03-02 16:19:09 +00:00

10 lines
137 B
Nix

{ pkgs, ... }: {
programs.aria2 = {
enable = true;
settings = {
enable-dht = true;
seed-ratio = 5.0;
};
};
}