dotfiles/nix/home/programs/rtorrent/default.nix

17 lines
309 B
Nix
Raw Normal View History

{ pkgs, finalDir, downloadDir, watchDir }:
{
services.rtorrent = {
enable = true;
downloadDir = downloadDir;
group = "users";
configText =
builtins.readFile (pkgs.substituteAll {
src = ./rtorrent.rc;
watchDir = watchDir;
finalDir = finalDir;
});
};
}