21 lines
		
	
	
	
		
			416 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			416 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { ... }: {
 | |
|   disko.devices.disk.vda = {
 | |
|     type = "disk";
 | |
|     device = "/dev/vda";
 | |
|     content = {
 | |
|       type = "gpt";
 | |
|       partitions = {
 | |
|         boot = {
 | |
|           size = "1G";
 | |
|           type = "EF00";
 | |
|           content = {
 | |
|             type = "filesystem";
 | |
|             format = "vfat";
 | |
|             mountpoint = "/boot";
 | |
|             mountOptions = [ "umask=0077" ];
 | |
|           };
 | |
|         };
 | |
|       };
 | |
|     };
 | |
|   };
 | |
| }
 |