services/sonarr: init
This commit is contained in:
parent
13d0e1ddbd
commit
2532d32ffd
3 changed files with 13 additions and 0 deletions
|
|
@ -35,6 +35,7 @@
|
|||
# postgres
|
||||
# synapse
|
||||
jellyfin
|
||||
sonarr
|
||||
tmptsync
|
||||
unbound
|
||||
vaultwarden
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
11
modules/services/sonarr.nix
Normal file
11
modules/services/sonarr.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
let
|
||||
dir = "/persist/sonarr";
|
||||
in
|
||||
{
|
||||
services.sonarr = {
|
||||
enable = true;
|
||||
dataDir = dir;
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue