mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-31 01:32:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }:
 | |
| {
 | |
|   hardware = {
 | |
|     raspberry-pi."4".leds = {
 | |
|       eth.disable = true;
 | |
|       act.disable = true;
 | |
|       pwr.disable = true;
 | |
|     };
 | |
|     deviceTree = {
 | |
|       enable = true;
 | |
|       filter = "*rpi-4-*.dtb";
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   environment.systemPackages = with pkgs; [
 | |
|     libraspberrypi
 | |
|     raspberrypi-eeprom
 | |
|   ];
 | |
| }
 | 
