mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-12 05:26:00 +03:00
15 lines
342 B
Nix
15 lines
342 B
Nix
{ pkgs ? (import ../../../pkgs.nix {})
|
|
}@args':
|
|
let args = args' // { inherit pkgs; }; in
|
|
|
|
let
|
|
system-build = import ../../../lib/eval-with-configuration.nix (args // {
|
|
device = "uefi-x86_64";
|
|
configuration = [ { imports = [
|
|
../../hello/configuration.nix
|
|
./configuration.nix
|
|
]; } ];
|
|
});
|
|
in
|
|
system-build.build.vm
|