mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 21:41:53 +03:00
12 lines
234 B
Nix
12 lines
234 B
Nix
|
let
|
||
|
device = "qemu-x86_64";
|
||
|
system-build = import ../../../. {
|
||
|
inherit device;
|
||
|
configuration = [ { imports = [
|
||
|
../../hello/configuration.nix
|
||
|
./configuration.nix
|
||
|
]; } ];
|
||
|
};
|
||
|
in
|
||
|
system-build.build.default
|