Setup radarr and sonarr on torrent host

This commit is contained in:
fi 2023-12-16 00:22:34 +01:00
parent 2085dfb783
commit 2733d28a99
Signed by: fi
SSH key fingerprint: SHA256:d+6fQoDPMbSFK95zRVflRKZLRKF4cPSQb7VIxYkhFsA
13 changed files with 245 additions and 1 deletions

View file

@ -0,0 +1,13 @@
{ keyCommandEnv, ... }:
{
deployment.keys = {
"torrent-samba-credentials.secret" = {
keyCommand = keyCommandEnv ++ [ "pass" "torrent/samba-credentials" ];
destDir = "/secrets";
user = "root";
group = "root";
permissions = "0640";
uploadAt = "pre-activation";
};
};
}