mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			251 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			251 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
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;
 | 
						|
  };
 | 
						|
}
 | 
						|
```
 |