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

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

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

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