nixpkgs/nixos/tests/systemd-initrd-simple.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
226 B
Nix
Raw Normal View History

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