11 lines
180 B
Nix
11 lines
180 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
services.rtorrent = {
|
|
enable = true;
|
|
user = "geir";
|
|
group = "users";
|
|
#dataDir = "/mnt/storage";
|
|
downloadDir = "/mnt/storage";
|
|
};
|
|
}
|