1
0
Fork 0

mediaserver: prowlarr

This commit is contained in:
Daniel Kempkens 2023-04-15 00:04:18 +02:00
parent b61ba5dcf7
commit 36c7e12d69
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
services.prowlarr = {
@ -8,7 +8,8 @@
systemd.services.prowlarr = {
bindsTo = [ "netns@wg.service" ];
after = [ "wg.service" ];
requires = [ "network-online.target" ];
after = lib.mkForce [ "wg.service" ];
serviceConfig = {
NetworkNamespacePath = "/var/run/netns/wg";