mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-11-12 13:13:02 +03:00
11 lines
159 B
Nix
11 lines
159 B
Nix
with (import ./overlay);
|
|
|
|
# A basic shell with some tools available.
|
|
mkShell rec {
|
|
name = "nixos-mobile";
|
|
buildInputs = [
|
|
mkbootimg
|
|
dtbTool
|
|
];
|
|
}
|