infrastructure/nixos/hosts/hades/overseerr/unpackerr.nix

20 lines
437 B
Nix
Raw Normal View History

2023-04-19 16:51:21 +02:00
{ config, ... }:
2022-10-15 15:38:47 +02:00
let vs = config.vault-secrets.secrets;
2023-05-04 13:08:10 +02:00
in {
2022-10-15 15:38:47 +02:00
vault-secrets.secrets.unpackerr = { };
services.unpackerr = {
enable = true;
2023-05-18 16:58:36 +02:00
debug = false;
2022-10-15 15:38:47 +02:00
environmentFile = "${vs.unpackerr}/environment";
sonarr = {
2023-05-18 16:58:36 +02:00
url = "http://localhost:8989/";
2022-10-15 15:38:47 +02:00
paths = "/mnt/storage/torrents/r/TV";
};
radarr = {
2023-05-18 16:58:36 +02:00
url = "http://localhost:7878/";
2022-10-15 15:38:47 +02:00
paths = "/mnt/storage/torrents/r/Movie";
};
};
}