h: fix nomadnet systemd unit to run after network online

This commit is contained in:
Aaron Bieber 2024-07-01 13:25:01 -06:00
parent eb70c898a0
commit 6633b2ec8d
No known key found for this signature in database

View File

@ -274,7 +274,9 @@ in
}; };
nomadnet = { nomadnet = {
description = "nomadnet"; description = "nomadnet";
wants = [ "multi-user.target" "multi-user.target" ]; after = [ "network-online.target" ];
wants = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = { serviceConfig = {
User = "qbit"; User = "qbit";
Type = "forking"; Type = "forking";