transmission config

This commit is contained in:
Geir Okkenhaug Jerstad 2024-05-20 19:06:23 +02:00
parent c3e59d03c9
commit 062ac80ec8
5 changed files with 15 additions and 11 deletions

10
fileserver/rtorrent.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, config, ... }:
{
services.rtorrent = {
enable = true;
user = "geir";
group = "users";
#dataDir = "/mnt/storage";
downloadDir = "/mnt/storage";
};
}