14 lines
343 B
Nix
Raw Normal View History

2024-06-19 15:16:17 +03:00
{ config, ... }: {
2023-01-26 00:23:55 +03:00
# TODO: enable websocket (--rpc-certificate)
2024-06-19 15:16:17 +03:00
home-manager.users.${config.mainuser} = { config, ...}: {
2024-02-08 23:21:10 +03:00
programs.aria2 = {
enable = true;
settings = {
2024-06-19 15:16:17 +03:00
dir = "${config.home.homeDirectory}/Downloads/aria2";
2024-02-08 23:21:10 +03:00
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
}