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

16 lines
309 B
Nix

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