1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 05:21:47 +03:00
mobile-nixos/examples/testing/crash-before-switch-root/default.nix

12 lines
231 B
Nix
Raw Normal View History

{ device ? "uefi-x86_64" }:
let
system-build = import ../../../. {
inherit device;
configuration = [ { imports = [
../../hello/configuration.nix
./configuration.nix
]; } ];
};
in
2021-01-02 04:58:44 +03:00
system-build.build.vm