sourcephile
/
git
/
julm
/
julm-nix.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
julm: oignon: gcompris: install
[julm/julm-nix.git]
/
home-manager
/
profiles
/
aria2c.nix
1
{ pkgs, ... }:
2
{
3
home.packages = [ pkgs.aria2 ];
4
xdg.configFile."aria2/aria2.conf".text = ''
5
continue=true
6
# Usually not great for compression by the filesystem (ZFS/Btrfs).
7
file-allocation=none
8
max-connection-per-server=16
9
min-split-size=1M
10
'';
11
}