mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-31 01:32:11 +01:00 
			
		
		
		
	
		
			
	
	
		
			24 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
|   | { config, lib, pkgs, ... }: | ||
|  | 
 | ||
|  | { | ||
|  |   boot.initrd = { | ||
|  |     availableKernelModules = [ | ||
|  |       "ahci" | ||
|  |       "e1000e" | ||
|  |       "ehci_pci" | ||
|  |       "nvme" | ||
|  |       "sd_mod" | ||
|  |       "uas" | ||
|  |       "usbhid" | ||
|  |       "usb_storage" | ||
|  |       "xhci_pci" | ||
|  |     ]; | ||
|  | 
 | ||
|  |     kernelModules = [ | ||
|  |       "dm-snapshot" | ||
|  |       "e1000e" | ||
|  |       "nvme" | ||
|  |     ]; | ||
|  |   }; | ||
|  | } |