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
|
# postgres
|
||||||
# synapse
|
# synapse
|
||||||
jellyfin
|
jellyfin
|
||||||
|
sonarr
|
||||||
tmptsync
|
tmptsync
|
||||||
unbound
|
unbound
|
||||||
vaultwarden
|
vaultwarden
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ in {
|
||||||
./services/jellyfin.nix
|
./services/jellyfin.nix
|
||||||
./services/nginx.nix
|
./services/nginx.nix
|
||||||
./services/postgres.nix
|
./services/postgres.nix
|
||||||
|
./services/sonarr.nix
|
||||||
./services/synapse.nix
|
./services/synapse.nix
|
||||||
./services/tmptsync.nix
|
./services/tmptsync.nix
|
||||||
./services/unbound.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