forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nixos/tests/systemd-initrd-luks-fido2: init
- Loading branch information
1 parent
b9b4548
commit 78f929c
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import ./make-test-python.nix ({ lib, pkgs, ... }: { | ||
name = "systemd-initrd-luks-fido2"; | ||
|
||
nodes.machine = { pkgs, config, ... }: { | ||
# Use systemd-boot | ||
virtualisation = { | ||
emptyDiskImages = [ 512 ]; | ||
useBootLoader = true; | ||
useEFIBoot = true; | ||
qemu.package = lib.mkForce (pkgs.qemu_test.override { canokeySupport = true; }); | ||
qemu.options = [ "-device canokey,file=/tmp/canokey-file" ]; | ||
}; | ||
boot.loader.systemd-boot.enable = true; | ||
|
||
boot.initrd.systemd.enable = true; | ||
|
||
environment.systemPackages = with pkgs; [ cryptsetup ]; | ||
|
||
specialisation.boot-luks.configuration = { | ||
boot.initrd.luks.devices = lib.mkVMOverride { | ||
cryptroot = { | ||
device = "/dev/vdc"; | ||
crypttabExtraOpts = [ "fido2-device=auto" ]; | ||
}; | ||
}; | ||
virtualisation.bootDevice = "/dev/mapper/cryptroot"; | ||
}; | ||
}; | ||
|
||
testScript = '' | ||
# Create encrypted volume | ||
machine.wait_for_unit("multi-user.target") | ||
machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdc -") | ||
machine.succeed("PASSWORD=supersecret SYSTEMD_LOG_LEVEL=debug systemd-cryptenroll --fido2-device=auto /dev/vdc |& systemd-cat") | ||
# Boot from the encrypted disk | ||
machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks.conf") | ||
machine.succeed("sync") | ||
machine.crash() | ||
# Boot and decrypt the disk | ||
machine.wait_for_unit("multi-user.target") | ||
assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount") | ||
''; | ||
}) |