nixos/virtualisation: use mkDefault in networking.useNetworkd in oci-common

To make it easier to disable for those folks who don't want to use
systemd-networkd.
This commit is contained in:
Thiago Kenji Okada
2023-09-28 22:05:34 +01:00
parent c5aab8968d
commit e514178339
+1 -1
View File
@@ -56,5 +56,5 @@ in
# Otherwise the instance may not have a working network-online.target,
# making the fetch-ssh-keys.service fail
networking.useNetworkd = true;
networking.useNetworkd = lib.mkDefault true;
}