nixpkgs/nixos/tests/systemd-initrd-simple.nix
2022-03-22 21:28:51 -04:00

12 lines
226 B
Nix

import ./make-test-python.nix ({ pkgs, ... }: {
name = "systemd-initrd-simple";
machine = { pkgs, ... }: {
boot.initrd.systemd.enable = true;
};
testScript = ''
machine.wait_for_unit("basic.target")
'';
})