nixosTests.systemd-initrd-networkd-ssh: bootDevice -> rootDevice

Missed deprecation fixup during the bootDisk PR.

Changed files
+3 -3
nixos
+3 -3
nixos/tests/systemd-initrd-networkd-ssh.nix
···
};
specialisation.encrypted-root.configuration = {
-
virtualisation.bootDevice = "/dev/mapper/root";
+
virtualisation.rootDevice = "/dev/mapper/root";
boot.initrd.luks.devices = lib.mkVMOverride {
-
root.device = "/dev/vdc";
+
root.device = "/dev/vdb";
};
boot.initrd.systemd.enable = true;
boot.initrd.network = {
···
server.wait_for_unit("multi-user.target")
server.succeed(
-
"echo somepass | cryptsetup luksFormat --type=luks2 /dev/vdc",
+
"echo somepass | cryptsetup luksFormat --type=luks2 /dev/vdb",
"bootctl set-default nixos-generation-1-specialisation-encrypted-root.conf",
"sync",
)