mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-22 17:31:04 +03:00

This patch adds a NixOS test for Limine on BIOS systems. It also fixes some formatting in `nixos/lib/make-disk-image.nix`. Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
11 lines
214 B
Nix
11 lines
214 B
Nix
{
|
|
runTest,
|
|
...
|
|
}:
|
|
{
|
|
bios = runTest ./bios.nix;
|
|
checksum = runTest ./checksum.nix;
|
|
secureBoot = runTest ./secure-boot.nix;
|
|
specialisations = runTest ./specialisations.nix;
|
|
uefi = runTest ./uefi.nix;
|
|
}
|