transmission config
This commit is contained in:
parent
c3e59d03c9
commit
062ac80ec8
|
@ -1,9 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
services.transmission = {
|
|
||||||
enable = true;
|
|
||||||
home = "/mnt/storage/";
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
geir@idea.3072:1716189222
|
|
|
@ -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
10
fileserver/rtorrent.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{ pkgs, config, ... }:
|
||||||
|
{
|
||||||
|
services.rtorrent = {
|
||||||
|
enable = true;
|
||||||
|
user = "geir";
|
||||||
|
group = "users";
|
||||||
|
#dataDir = "/mnt/storage";
|
||||||
|
downloadDir = "/mnt/storage";
|
||||||
|
};
|
||||||
|
}
|
|
@ -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;
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue