From 4245ae84ed126d2e56f7f221ea3b848f561b0203 Mon Sep 17 00:00:00 2001 From: clerie Date: Sun, 29 Jun 2025 22:25:19 +0200 Subject: [PATCH] hosts/carbon: Don't make kea depend on non existend network-setup.service anymore --- hosts/carbon/configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/carbon/configuration.nix b/hosts/carbon/configuration.nix index b0fc794..051f1d3 100644 --- a/hosts/carbon/configuration.nix +++ b/hosts/carbon/configuration.nix @@ -63,10 +63,10 @@ systemd.services.kea-dhcp4-server = { after = [ - "network-setup.service" + "network.target" ]; - requires = [ - "network-setup.service" + wants = [ + "network.target" ]; };