mirror of
https://github.com/nix-community/disko.git
synced 2024-11-05 06:04:20 +03:00
12 lines
319 B
Nix
12 lines
319 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
name = "hybrid-tmpfs-on-root";
|
|
disko-config = ../example/hybrid-tmpfs-on-root.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
machine.succeed("findmnt / --types tmpfs");
|
|
'';
|
|
}
|