mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 11:03:37 +03:00
12 lines
169 B
Nix
12 lines
169 B
Nix
{ device }:
|
|
|
|
let
|
|
system-build = import ../../. {
|
|
inherit device;
|
|
configuration = [ (import ./configuration.nix) ];
|
|
};
|
|
in
|
|
{
|
|
inherit (system-build) build;
|
|
}
|