configs/fileserver/rtorrent.nix

11 lines
180 B
Nix
Raw Normal View History

2024-05-20 19:06:23 +02:00
{ pkgs, config, ... }:
{
services.rtorrent = {
enable = true;
user = "geir";
group = "users";
#dataDir = "/mnt/storage";
downloadDir = "/mnt/storage";
};
}