From 30cdfc28ad2a717bf4f3cb4e7adb0ffa8bc12ef3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 24 May 2024 02:38:25 +0200 Subject: [PATCH] Fix network-online.target warning --- nixos-module.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos-module.nix b/nixos-module.nix index 16024ad..f4f35d9 100644 --- a/nixos-module.nix +++ b/nixos-module.nix @@ -94,6 +94,7 @@ systemd.services.buzzrelay = { wantedBy = [ "multi-user.target" ]; after = [ "postgresql.service" "network-online.target" ]; + wants = [ "network-online.target" ]; environment.RUST_LOG = "buzzrelay=${cfg.logLevel}"; serviceConfig = { Type = "notify";