tests: add make-disk-image test

This commit is contained in:
lassulus 2023-07-28 14:04:42 +02:00 committed by mergify[bot]
parent 04e227bab7
commit 43f17a8b31

View File

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> { }
, diskoLib ? pkgs.callPackage ../lib { }
}:
diskoLib.makeDiskImage {
nixosConfig = pkgs.nixos [
../module.nix
../example/simple-efi.nix
];
}