mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			526 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			526 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# Microchip Icicle-kit board support
 | 
						|
 | 
						|
## 1. Supported devices
 | 
						|
 - [Microchip Icicle Kit](https://www.microchip.com/en-us/development-tool/MPFS-ICICLE-KIT-ES) (**mpfs-icicle-kit**) - device-specific U-boot and Linux kernel, nixos configuration example.
 | 
						|
 | 
						|
## 2. How to use?
 | 
						|
Currently this overlay is used for generating bootable NixOS SD images.
 | 
						|
 | 
						|
Code snippet example that enables icicle-kit configuration:
 | 
						|
```
 | 
						|
{ nixos-hardware, }: {
 | 
						|
  system = "riscv64-linux";
 | 
						|
  modules = [
 | 
						|
    nixos-hardware.nixosModules.icicle-kit
 | 
						|
  ];
 | 
						|
}
 | 
						|
```
 |