1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/tests/modules/programs/aria2/settings.nix
Justin Lovinger 1dd226fde7
aria2: add module
PR #1202
2020-05-03 13:21:52 +02:00

42 lines
848 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.aria2 = {
enable = true;
settings = {
listen-port = 60000;
dht-listen-port = 60000;
seed-ratio = 1.0;
max-upload-limit = "50K";
ftp-pasv = true;
};
extraConfig = ''
# Extra aria2 configuration.
'';
};
nixpkgs.overlays =
[ (self: super: { aria2 = pkgs.writeScriptBin "dummy-aria2" ""; }) ];
nmt.script = ''
assertFileContent \
home-files/.config/aria2/aria2.conf \
${
pkgs.writeText "aria2-expected-config.conf" ''
dht-listen-port=60000
ftp-pasv=true
listen-port=60000
max-upload-limit=50K
seed-ratio=1.000000
# Extra aria2 configuration.
''
}
'';
};
}