services/sonarr: init

This commit is contained in:
LavaDesu 2022-08-10 15:51:38 +07:00
parent 13d0e1ddbd
commit 2532d32ffd
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 13 additions and 0 deletions

View file

@ -35,6 +35,7 @@
# postgres
# synapse
jellyfin
sonarr
tmptsync
unbound
vaultwarden

View file

@ -18,6 +18,7 @@ in {
./services/jellyfin.nix
./services/nginx.nix
./services/postgres.nix
./services/sonarr.nix
./services/synapse.nix
./services/tmptsync.nix
./services/unbound.nix

View file

@ -0,0 +1,11 @@
{ ... }:
let
dir = "/persist/sonarr";
in
{
services.sonarr = {
enable = true;
dataDir = dir;
openFirewall = true;
};
}