mirror of
https://github.com/nix-community/disko.git
synced 2026-01-15 02:38:48 +01:00
12 lines
339 B
Nix
12 lines
339 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../src/disko_lib { }
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "hybrid-tmpfs-on-root";
|
|
disko-config = ../../example/hybrid-tmpfs-on-root.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
machine.succeed("findmnt / --types tmpfs");
|
|
'';
|
|
}
|