10 lines
		
	
	
	
		
			195 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			195 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, pkgs, ... }:
 | |
| 
 | |
| {
 | |
|   hardware.enableAllFirmware = true;
 | |
|   hardware.cpu.intel.updateMicrocode = true;
 | |
|   services.fwupd.enable = true;
 | |
| 
 | |
|   services.printing.drivers = [ pkgs.hplip ];
 | |
| }
 | |
| 
 |