1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-11-28 12:56:54 +03:00
not really known
Go to file
2018-06-25 20:07:50 -04:00
bin Makes bin/build exec. 2018-06-23 22:08:24 -04:00
devices Removes dead code... 2018-06-25 15:54:26 -04:00
lib WIP : stops relying on NIX_PATH entries. 2018-06-23 18:09:05 -04:00
modules WIP : stops relying on NIX_PATH entries. 2018-06-23 18:09:05 -04:00
nixos WIP : Builds a system image using nixos. 2018-06-23 17:11:07 -04:00
overlay dtbtool: Use DTC from buildPackages. 2018-06-25 16:26:50 -04:00
systems boot.img: fixes for cross. 2018-06-25 20:07:50 -04:00
.gitignore WIP : Builds a system image using nixos. 2018-06-23 17:11:07 -04:00
default.nix WIP : Builds a system image using nixos. 2018-06-23 17:11:07 -04:00
loading.png Updates graphics (+ export png) 2018-06-11 19:25:48 -04:00
loading.ppm.gz Adds loading ppm, and adds R G B text to temp splash. 2018-06-11 00:00:23 +00:00
loading.xcf Updates graphics (+ export png) 2018-06-11 19:25:48 -04:00
README.md WIP : Builds a system image using nixos. 2018-06-23 17:11:07 -04:00
shell.nix Adds Asus Z00T kernel 2018-06-10 00:57:12 +00:00
system-image.nix Adds initialHashedPassword for root (installer image). 2018-06-23 22:08:37 -04:00
temp-splash.png Updates graphics (+ export png) 2018-06-11 19:25:48 -04:00
temp-splash.ppm.gz Adds loading ppm, and adds R G B text to temp splash. 2018-06-11 00:00:23 +00:00
temp-splash.xcf Updates graphics (+ export png) 2018-06-11 19:25:48 -04:00

Mobile NixOS

An overlay for building stuff.

This is a work-in-progress.

WIP notes

nix-build --argstr device asus-z00t -A all
# Maybe `nix copy ./result --to ssh://another-host`
adb wait-for-device && adb reboot bootloader
fastboot boot result # or full path
# getting adb and fastboot working is left as an exercise to the reader.

Alternatively, helpers under bin can be used. They mostly pave over the nix CLI to provide one-liners and one-parameter helpers.

# Builds -A all for device_name $1
bin/build asus-z00t

Booting qemu

bin/build qemu-x86_64
bin/boot-qemu

This currently does not build using 18.03 and may never (18.09 may release before!)

local.nix

This file can be used to override (possibly with lib.mkForce) options on a global scale for your local builds.

If the file does not exist, it will not fail.

A sample local.nix:

{ lib, ... }:

{
  mobile.boot.stage-1.splash.enable = false;
}

This will disable splash screens.

This will be most useful to configure local sensitive stuff like password (hashes) or ssh keys.

Goals

The goal is to get a nix-built operating system, preferably NixOS running on mobile devices, e.g. Android phones.

Prior work

This project heavily borrows and relies on the hard work from the PostmarketOS project.

Notes

This is an unofficial and unsanctioned project.