summaryrefslogtreecommitdiffstats
path: root/tests/with-lib.nix
blob: 18c422b260b1e8e07ce480720b2f8be891153049 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
}:
makeDiskoTest {
  disko-config = ../example/with-lib.nix;
  extraTestScript = ''
    machine.succeed("mountpoint /");
  '';
  efi = false;
  grub-devices = [ "/dev/vdb" ];
}