mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-19 05:51:52 +03:00
a8f14efead
It is incomplete because it does not use the (not implemented) VM attribute.
12 lines
234 B
Nix
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
|