mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-16 20:21:32 +03:00
13 lines
171 B
Nix
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;
|
||
|
};
|
||
|
}
|