mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 21:14:33 +03:00
24 lines
593 B
Nix
24 lines
593 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
name = "swap";
|
|
disko-config = ../example/swap.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
machine.succeed("swapon --show >&2");
|
|
machine.succeed("""
|
|
lsblk --json |
|
|
jq -e '.blockdevices[] |
|
|
select(.name == "vda") |
|
|
.children[] |
|
|
select(.name == "vda3") |
|
|
.children[0].mountpoints[0] == "[SWAP]"
|
|
'
|
|
""");
|
|
'';
|
|
extraConfig = {
|
|
environment.systemPackages = [ pkgs.jq ];
|
|
};
|
|
}
|