18 lines
		
	
	
	
		
			289 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			289 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, config, ... }:
 | |
| 
 | |
| let
 | |
|   inherit (lib) mkIf;
 | |
|   host = config.systemModules.host;
 | |
| in
 | |
| 
 | |
| {
 | |
|   config = mkIf (host.type != "phone") {
 | |
|     boot.loader = {
 | |
|       systemd-boot = {
 | |
|         enable = true;
 | |
|         consoleMode = "max";
 | |
|       };
 | |
|       efi.canTouchEfiVariables = true;
 | |
|     };
 | |
|   };
 | |
| }
 |