From 3b60163a3975f4485273c6bb59980bbcef07ba44 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sun, 16 Apr 2023 00:39:50 +0200 Subject: [PATCH] mediaserver: improve socat startup --- system/nixos/prowlarr.nix | 1 + system/nixos/sabnzbd.nix | 1 + system/nixos/sonarr.nix | 1 + 3 files changed, 3 insertions(+) diff --git a/system/nixos/prowlarr.nix b/system/nixos/prowlarr.nix index 4cf16f4..7e371a0 100644 --- a/system/nixos/prowlarr.nix +++ b/system/nixos/prowlarr.nix @@ -20,6 +20,7 @@ bindsTo = [ "wg.service" ]; requires = [ "prowlarr.service" ]; after = [ "wg.service" ]; + wantedBy = [ "multi-user.target" ]; serviceConfig = { Type = "simple"; diff --git a/system/nixos/sabnzbd.nix b/system/nixos/sabnzbd.nix index e78e7e8..ace36a7 100644 --- a/system/nixos/sabnzbd.nix +++ b/system/nixos/sabnzbd.nix @@ -21,6 +21,7 @@ bindsTo = [ "wg.service" ]; requires = [ "sabnzbd.service" ]; after = [ "wg.service" ]; + wantedBy = [ "multi-user.target" ]; serviceConfig = { Type = "simple"; diff --git a/system/nixos/sonarr.nix b/system/nixos/sonarr.nix index 55e98fc..82b33b7 100644 --- a/system/nixos/sonarr.nix +++ b/system/nixos/sonarr.nix @@ -22,6 +22,7 @@ bindsTo = [ "wg.service" ]; requires = [ "sonarr.service" ]; after = [ "wg.service" ]; + wantedBy = [ "multi-user.target" ]; serviceConfig = { Type = "simple";