mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
38 lines
736 B
Nix
38 lines
736 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;
|
||
|
};
|
||
|
};
|
||
|
}
|