From 284ae0366a9ac506d328bd9319d1536408196837 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Tue, 23 Aug 2022 17:03:34 +0200 Subject: [PATCH] droppie: fix missing systemd wantedBy without this, the systemd service does not start after a reboot --- hosts/droppie/droppie.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/droppie/droppie.nix b/hosts/droppie/droppie.nix index b828d748..0e2fadf3 100644 --- a/hosts/droppie/droppie.nix +++ b/hosts/droppie/droppie.nix @@ -37,6 +37,7 @@ in Restart = "always"; RestartSec = "5s"; }; + wantedBy = [ "multi-user.target" ]; }; }; }