infrastructure/nixos/hosts/hades/overseerr/unpackerr.nix
Vivian bc954cc68d
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
refactored *arr
2023-05-18 16:58:36 +02:00

20 lines
437 B
Nix

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