summaryrefslogtreecommitdiffstats
path: root/tests/simple-efi.nix
blob: 2d3b92d29596ffcfba2a91af583306a88cfd1dcf (plain)
1
2
3
4
5
6
7
8
9
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
}:
makeDiskoTest {
  disko-config = import ../example/simple-efi.nix;
  extraTestScript = ''
    machine.succeed("mountpoint /");
  '';
}