29 lines
772 B
Nix
29 lines
772 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# https://mynixos.com/nixpkgs/options/services.transmission
|
|
|
|
services.transmission = {
|
|
enable = true;
|
|
credentialsFile = "/var/lib/secrets/transmission/settings.json";
|
|
openFirewall = true;
|
|
# openPeerPorts = true;
|
|
openRPCPort = true;
|
|
};
|
|
|
|
# NOTE
|
|
# credentialsFile example in transmission-settings.json in this directory
|
|
# move and put into: /var/lib/secrets/transmission/settings.json
|
|
|
|
# =====
|
|
# NOTES TO FIX
|
|
#added user here: https://mynixos.com/nixpkgs/option/services.transmission.credentialsFile
|
|
|
|
#git hub issue
|
|
#https://mynixos.com/nixpkgs/option/services.transmission.credentialsFile
|
|
#config options
|
|
#https://github.com/transmission/transmission/blob/main/docs/Editing-Configuration-Files.md
|
|
#settings.json options
|
|
|
|
|
|
|
|
}
|