From e971ce4ae46d14c5fef6620ca6000b222f6c4b8e Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 27 Sep 2024 09:48:47 +0200 Subject: [PATCH] Delay console after network.target Let's see if we can get rid of the messages after boot. --- lagarto-ox.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lagarto-ox.nix b/lagarto-ox.nix index 7b2d8eb..36644d8 100644 --- a/lagarto-ox.nix +++ b/lagarto-ox.nix @@ -338,6 +338,7 @@ # Run getty on /dev/console and restartt until it works systemd.services."serial-getty@console" = { enable = true; + after = [ "network.target" ]; wantedBy = [ "getty.target" ]; # to start at boot serviceConfig.Restart = "always"; };