2024-02-08 23:21:10 +03:00
|
|
|
{ config, ... }:
|
2023-01-26 00:23:55 +03:00
|
|
|
let
|
|
|
|
homeDir = config.home-manager.users.${config.mainuser}.home.homeDirectory;
|
|
|
|
in {
|
|
|
|
# TODO: enable websocket (--rpc-certificate)
|
2024-02-08 23:21:10 +03:00
|
|
|
home-manager.users.${config.mainuser} = {
|
|
|
|
programs.aria2 = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
dir = "${homeDir}/Downloads/aria2";
|
|
|
|
listen-port = "6881-6999";
|
2024-02-10 02:07:28 +03:00
|
|
|
# rpc-listen-port = 6800;
|
2024-02-08 23:21:10 +03:00
|
|
|
};
|
|
|
|
};
|
2023-01-26 00:23:55 +03:00
|
|
|
};
|
2024-02-08 23:21:10 +03:00
|
|
|
|
2023-01-26 00:23:55 +03:00
|
|
|
}
|