1 import ./make-test-python.nix ({ lib, pkgs, ... }: let
4 name = "systemd-initrd-luks-unl0kr";
11 nodes.machine = { pkgs, ... }: {
13 emptyDiskImages = [ 512 512 ];
15 mountHostNixStore = true;
21 boot.loader.systemd-boot.enable = true;
23 boot.initrd.availableKernelModules = [
24 "evdev" # for entering pw
28 environment.systemPackages = with pkgs; [ cryptsetup ];
32 emergencyAccess = true;
37 specialisation.boot-luks.configuration = {
38 boot.initrd.luks.devices = lib.mkVMOverride {
39 # We have two disks and only type one password - key reuse is in place
40 cryptroot.device = "/dev/vdb";
41 cryptroot2.device = "/dev/vdc";
43 virtualisation.rootDevice = "/dev/mapper/cryptroot";
44 virtualisation.fileSystems."/".autoFormat = true;
45 # test mounting device unlocked in initrd after switching root
46 virtualisation.fileSystems."/cryptroot2".device = "/dev/mapper/cryptroot2";
51 # Create encrypted volume
52 machine.wait_for_unit("multi-user.target")
53 machine.succeed("echo -n ${passphrase} | cryptsetup luksFormat -q --iter-time=1 /dev/vdb -")
54 machine.succeed("echo -n ${passphrase} | cryptsetup luksFormat -q --iter-time=1 /dev/vdc -")
55 machine.succeed("echo -n ${passphrase} | cryptsetup luksOpen -q /dev/vdc cryptroot2")
56 machine.succeed("mkfs.ext4 /dev/mapper/cryptroot2")
58 # Boot from the encrypted disk
59 machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks.conf")
60 machine.succeed("sync")
63 # Boot and decrypt the disk
65 machine.wait_for_text("Password required for booting")
66 machine.screenshot("prompt")
67 machine.send_chars("${passphrase}")
68 machine.screenshot("pw")
69 machine.send_chars("\n")
70 machine.wait_for_unit("multi-user.target")
72 assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount"), "/dev/mapper/cryptroot do not appear in mountpoints list"
73 assert "/dev/mapper/cryptroot2 on /cryptroot2 type ext4" in machine.succeed("mount")