From fff6a9643593941ddfbe5a6cf7a72ea95c0e597a Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 29 Dec 2024 20:49:03 +0100 Subject: Correct service targets in specimen module Signed-off-by: Mel --- application/module.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/application/module.nix b/application/module.nix index 557f421..238ec5e 100644 --- a/application/module.nix +++ b/application/module.nix @@ -51,8 +51,9 @@ in systemd.services.specimen = { description = "specimen application service"; - wantedBy = "multi-user.target"; - after = "network.target"; + wantedBy = [ "multi-user.target" ]; + wants = [ "network.target" ]; + after = [ "network.target" ]; serviceConfig = { DynamicUser = true; -- cgit 1.4.1