From 30510a31947395f88c2d97d844673b5efd81b91b Mon Sep 17 00:00:00 2001 From: stuebinm Date: Thu, 16 Feb 2023 01:35:05 +0100 Subject: [PATCH] tracktrain: don't start before network.target i hope this is the correct option; the last one apparently wasn't enough. --- services/tracktrain.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/services/tracktrain.nix b/services/tracktrain.nix index f706641..d33d948 100644 --- a/services/tracktrain.nix +++ b/services/tracktrain.nix @@ -74,6 +74,7 @@ in description = "tracks trains, hopefully"; wantedBy = [ "multi-user.target" ]; + requires = [ "network.target" ]; after = [ "network.target" ]; serviceConfig = { Type = "simple";