Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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.

+1 -1
+1 -1
nixos/modules/virtualisation/oci-common.nix
··· 56 57 # Otherwise the instance may not have a working network-online.target, 58 # making the fetch-ssh-keys.service fail 59 - networking.useNetworkd = true; 60 }
··· 56 57 # Otherwise the instance may not have a working network-online.target, 58 # making the fetch-ssh-keys.service fail 59 + networking.useNetworkd = lib.mkDefault true; 60 }