18 lines
		
	
	
		
			444 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			444 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|     config,
 | |
|     pkgs,
 | |
|     ...
 | |
| }:
 | |
| {
 | |
|     boot.loader.grub.enable = true;
 | |
| 
 | |
|     boot.loader.grub.efiSupport = true;
 | |
|     # location at install time. Since the drive is a USB drive this is expcected to change on each device
 | |
|     boot.loader.grub.devices = ["/dev/sdb"];
 | |
|     boot.loader.grub.efiInstallAsRemovable = true;
 | |
|     boot.loader.systemd-boot.enable = false;
 | |
| 
 | |
|     boot.loader.efi.canTouchEfiVariables = false;
 | |
|     boot.tmp.useTmpfs = true;
 | |
| }
 |