This commit is contained in:
parent
a2511aa708
commit
bc954cc68d
11 changed files with 51 additions and 104 deletions
19
nixos/hosts/hades/overseerr/unpackerr.nix
Normal file
19
nixos/hosts/hades/overseerr/unpackerr.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ config, ... }:
|
||||
let vs = config.vault-secrets.secrets;
|
||||
in {
|
||||
vault-secrets.secrets.unpackerr = { };
|
||||
|
||||
services.unpackerr = {
|
||||
enable = true;
|
||||
debug = false;
|
||||
environmentFile = "${vs.unpackerr}/environment";
|
||||
sonarr = {
|
||||
url = "http://localhost:8989/";
|
||||
paths = "/mnt/storage/torrents/r/TV";
|
||||
};
|
||||
radarr = {
|
||||
url = "http://localhost:7878/";
|
||||
paths = "/mnt/storage/torrents/r/Movie";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue