mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-16 03:32:02 +03:00
6fcd7a09e0
This is a WIP, but this already should allow device-specific fb.modes
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;
|
|
};
|
|
}
|