depot/third_party/home-manager/modules/programs/rtorrent.nix
Default email 72904c318c Project import generated by Copybara.
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
2020-10-11 17:22:58 -07:00

34 lines
731 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.rtorrent;
in {
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 ];
xdg.configFile."rtorrent/rtorrent.rc" =
mkIf (cfg.settings != "") { text = cfg.settings; };
};
}