From 29cc20bb041a38a6a362e0580cc52aae98e54e9e Mon Sep 17 00:00:00 2001 From: Hermes Date: Fri, 5 Jun 2026 22:58:09 -0400 Subject: [PATCH] fix: add wants=network-online.target to rnsd and kismet services to silence eval warnings --- hosts/uConsole/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/uConsole/configuration.nix b/hosts/uConsole/configuration.nix index 8a550e8..ef1b9dc 100644 --- a/hosts/uConsole/configuration.nix +++ b/hosts/uConsole/configuration.nix @@ -107,6 +107,7 @@ # ============================================================ systemd.services.rnsd = { description = "Reticulum Network Stack Daemon"; + wants = [ "network-online.target" ]; after = [ "network-online.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { @@ -124,6 +125,7 @@ # ============================================================ systemd.services.kismet = { description = "Kismet Wi-Fi Monitor & IDS"; + wants = [ "network-online.target" ]; after = [ "network-online.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = {