2019-05-13 08:00:00 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.rtorrent;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2019-05-13 08:00:00 +02:00
|
|
|
meta.maintainers = [ maintainers.marsam ];
|
|
|
|
|
|
|
|
options.programs.rtorrent = {
|
|
|
|
enable = mkEnableOption "rTorrent";
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Configuration written to
|
|
|
|
<filename>~/.config/rtorrent/rtorrent.rc</filename>. See
|
|
|
|
<link xlink:href="https://github.com/rakshasa/rtorrent/wiki/Config-Guide" />
|
|
|
|
for explanation about possible values.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ pkgs.rtorrent ];
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
xdg.configFile."rtorrent/rtorrent.rc" =
|
|
|
|
mkIf (cfg.settings != "") { text = cfg.settings; };
|
2019-05-13 08:00:00 +02:00
|
|
|
};
|
|
|
|
}
|