1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-19 05:51:52 +03:00
mobile-nixos/examples/testing/qemu-cryptsetup/default.nix
Samuel Dionne-Riel a8f14efead qemu-cryptsetup: Use uefi-x86_64 system
It is incomplete because it does not use the (not implemented) VM
attribute.
2020-12-29 19:22:43 -05:00

12 lines
234 B
Nix

let
device = "uefi-x86_64";
system-build = import ../../../. {
inherit device;
configuration = [ { imports = [
../../hello/configuration.nix
./configuration.nix
]; } ];
};
in
system-build.build.default