aboutsummaryrefslogtreecommitdiff
path: root/configs/milan-x1c.nix
blob: 37fe960d59ab5e1e7cc947665aedac94b66f8d0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, ... }:

{
  imports = [
    ./common.nix
    ./boards/x1c.nix
  ];

  corenix.corebootConfig = {
    CONFIG_LINEAR_FRAMEBUFFER_MAX_WIDTH = "1600";
    CONFIG_LINEAR_FRAMEBUFFER_MAX_HEIGHT = "900";
    CONFIG_CBFS_SIZE = "0x6f0000";
  };

  grub2.enable = true;
  seabios.enable = true;
  seabios.asSecondaryPayload = true;
  tianocore.enable = true;
  tianocore.asSecondaryPayload = true;
  coreinfo.enable = true;
  nvramcui.enable = true;
  tint.enable = true;
}