mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
12 lines
226 B
Nix
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")
|
||
|
'';
|
||
|
})
|