diff options
author | lassulus <lassulus@lassul.us> | 2023-01-08 12:35:37 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2023-01-08 12:35:37 +0100 |
commit | 23b2047c80b222ef1c59d70b25697c6624792d19 (patch) | |
tree | 6b41d8977edc488b8ad1d58178c23340f90d5aee /lass/1systems/yellow/config.nix | |
parent | a6fae292ee20386d3c9eb4210ee7f304a6c230bd (diff) |
l yellow.r: add bazarr for subtitles
Diffstat (limited to 'lass/1systems/yellow/config.nix')
-rw-r--r-- | lass/1systems/yellow/config.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lass/1systems/yellow/config.nix b/lass/1systems/yellow/config.nix index 484a7f5dc..72e2e0e85 100644 --- a/lass/1systems/yellow/config.nix +++ b/lass/1systems/yellow/config.nix @@ -234,6 +234,7 @@ in { { predicate = "-p tcp --dport 9696"; target = "ACCEPT"; } # prowlarr { predicate = "-p tcp --dport 8989"; target = "ACCEPT"; } # sonarr { predicate = "-p tcp --dport 7878"; target = "ACCEPT"; } # radarr + { predicate = "-p tcp --dport 6767"; target = "ACCEPT"; } # bazarr # smbd { predicate = "-i retiolum -p tcp --dport 445"; target = "ACCEPT"; } @@ -379,13 +380,20 @@ in { services.radarr = { enable = true; + group = "download"; }; services.sonarr = { enable = true; + group = "download"; }; services.prowlarr = { enable = true; }; + + services.bazarr = { + enable = true; + group = "download"; + }; } |