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

View file

@ -1,9 +0,0 @@
{ config, pkgs, ... }:
{
services.transmission = {
enable = true;
home = "/mnt/storage/";
};
}

View file

@ -1 +0,0 @@
geir@idea.3072:1716189222

View file

@ -9,7 +9,6 @@
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./transmission.nix ./transmission.nix
./deluge.nix
]; ];
# Kernel # Kernel

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";
};
}

View file

@ -3,5 +3,10 @@
{ {
services.transmission = { services.transmission = {
enable = true; enable = true;
home = "/mnt/storage/";
settings.rpc-port = 9091;
settings.rpc-bind-address = "0.0.0.0";
openRPCPort = true;
}; };
} }