mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
40 lines
777 B
Nix
40 lines
777 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.
|
|
'';
|
|
};
|
|
|
|
test.stubs.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.
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
}
|