mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
`literalExpression` is intended just to signify code that needs to stay a string that gets represented exactly as-is for docs. It has been misused heavily and people get confused repeatedly on when or not to use it because of the rampant misuse.
74 lines
1.7 KiB
Nix
74 lines
1.7 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.programs.aria2;
|
|
|
|
keyValueFormat = pkgs.formats.keyValue { };
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.justinlovinger ];
|
|
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [
|
|
"programs"
|
|
"aria2"
|
|
"extraConfig"
|
|
] "This option has been removed. Please use 'programs.aria2.settings' instead.")
|
|
];
|
|
|
|
options.programs.aria2 = {
|
|
enable = lib.mkEnableOption "aria2";
|
|
|
|
package = lib.mkPackageOption pkgs "aria2" { nullable = true; };
|
|
|
|
settings = lib.mkOption {
|
|
inherit (keyValueFormat) type;
|
|
default = { };
|
|
description = ''
|
|
Options to add to {file}`aria2.conf` file.
|
|
See
|
|
{manpage}`aria2c(1)`
|
|
for options.
|
|
'';
|
|
example = {
|
|
listen-port = 60000;
|
|
dht-listen-port = 60000;
|
|
seed-ratio = 1.0;
|
|
max-upload-limit = "50K";
|
|
ftp-pasv = true;
|
|
};
|
|
};
|
|
|
|
systemd.enable = lib.mkEnableOption "Aria2 systemd integration";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
xdg.configFile."aria2/aria2.conf" = lib.mkIf (cfg.settings != { }) {
|
|
source = keyValueFormat.generate "aria2.conf" cfg.settings;
|
|
};
|
|
|
|
systemd.user.services.aria2 = lib.mkIf cfg.systemd.enable {
|
|
Unit = {
|
|
Description = "Aria2c daemon";
|
|
Documentation = "man:aria2c(1)";
|
|
X-Restart-Triggers = lib.mkIf (cfg.settings != { }) [
|
|
"${config.xdg.configFile."aria2/aria2.conf".source}"
|
|
];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = "${lib.getExe cfg.package} --enable-rpc";
|
|
Restart = "on-failure";
|
|
};
|
|
|
|
Install.WantedBy = [ "default.target" ];
|
|
};
|
|
};
|
|
}
|