This adds a test to check the file actually exists, and that changes update them, serving as a regression test for #537466.
14 lines
307 B
Nix
14 lines
307 B
Nix
{
|
|
runTest,
|
|
...
|
|
}:
|
|
{
|
|
additionalFiles = runTest ./additional-files.nix;
|
|
bios = runTest ./bios.nix;
|
|
checksum = runTest ./checksum.nix;
|
|
secureBoot = runTest ./secure-boot.nix;
|
|
specialisations = runTest ./specialisations.nix;
|
|
uefi = runTest ./uefi.nix;
|
|
distroName = runTest ./distroName.nix;
|
|
}
|