nixos/mycelium: pull in network-online.target

The test was failing because it waits for network-online.target which
was not part of the transaction.
This commit is contained in:
r-vdp 2025-04-28 10:39:54 +02:00
parent bae89afba1
commit 58013c9fb2
No known key found for this signature in database

View File

@ -73,7 +73,13 @@ in
systemd.services.mycelium = {
description = "Mycelium network";
after = [ "network.target" ];
after = [
"network.target"
"network-online.target"
];
wants = [
"network-online.target"
];
wantedBy = [ "multi-user.target" ];
restartTriggers = [
cfg.keyFile