summaryrefslogtreecommitdiffstats
path: root/purism/librem/13v3/README.md
blob: 8009eb3279c434e83c9bbe1f3118eabca285e426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Librem comes with Coreboot + SeaBIOS payload. That means EFI boot is not
possible. Use `fdisk` to partition hard drive, and GRUB as a bootloader:

```nix
{
  boot.loader.grub = {
    enable = true;
    device = "/dev/sda";
    version = 2;
  };
}
```