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:
parent
bae89afba1
commit
58013c9fb2
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user