1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

nixos/multipass: don't start until online

This commit is contained in:
Jon Seager 2023-04-13 09:15:10 +01:00
parent bc8ebd6a12
commit 0dfc5c14d7
No known key found for this signature in database
GPG key ID: F4A9184451BD9A74

View file

@ -33,8 +33,8 @@ in
description = "Multipass orchestrates virtual Ubuntu instances.";
wantedBy = [ "multi-user.target" ];
wants = [ "network.target" ];
after = [ "network.target" ];
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
environment = {
"XDG_DATA_HOME" = "/var/lib/multipass/data";