1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00
nixos-hardware/purism/librem/13v3/README.md

13 lines
251 B
Markdown
Raw Permalink Normal View History

2018-06-17 23:05:44 +02:00
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;
};
}
```