1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 11:03:37 +03:00
mobile-nixos/examples/target-disk-mode/default.nix
2021-01-04 05:52:01 -05:00

12 lines
169 B
Nix

{ device }:
let
system-build = import ../../. {
inherit device;
configuration = [ (import ./configuration.nix) ];
};
in
{
inherit (system-build) build;
}