mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-11-28 12:56:54 +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
|
||
|
];
|
||
|
}
|