1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 19:23:01 +03:00
mobile-nixos/devices/asus-flo/default.nix
2019-06-09 22:16:43 -04:00

19 lines
466 B
Nix

{ config, lib, pkgs, ... }:
{
mobile.device.name = "asus-flo";
mobile.device.info = (lib.importJSON ../postmarketOS-devices.json).asus-flo // {
# TODO : make kernel part of options.
kernel = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
};
mobile.hardware = {
soc = "qualcomm-apq8064-1aa";
ram = 1024 * 2;
screen = {
width = 1200; height = 1920;
};
};
mobile.system.type = "android-bootimg";
}