1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-16 03:32:02 +03:00
mobile-nixos/devices/asus-z00t/default.nix
Samuel Dionne-Riel 6fcd7a09e0 Makes rootfs configuratble by device_config...
This is a WIP, but this already should allow device-specific fb.modes
2018-06-12 23:14:55 +00:00

13 lines
171 B
Nix

{
lib,
}:
let
config = (lib.importJSON ../postmarketOS-devices.json).asus-z00t;
in
config // {
name = config.pm_name;
rootfs = {
fb_modes = ./fb.modes;
};
}