mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 16:10:03 +01:00
10 lines
304 B
Nix
10 lines
304 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
disko-config = import ../example/zfs.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("test -b /dev/zvol/zroot/zfs_testvolume");
|
|
machine.succeed("mountpoint /mnt/ext4onzfs");
|
|
'';
|
|
}
|