mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
b6a1262796
Co-authored-by: ajs124 <git@ajs124.de>
11 lines
258 B
Nix
11 lines
258 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../lib { }
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "lvm-thin";
|
|
disko-config = ../example/lvm-thin.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /home");
|
|
'';
|
|
}
|