32 lines
		
	
	
	
		
			714 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			714 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  disko.devices = {
 | 
						|
    disk = {
 | 
						|
      emmc = {
 | 
						|
        device = "/dev/disk/by-id/ata-INTENSO_SSD_1832501004002497";
 | 
						|
        type = "disk";
 | 
						|
        content = {
 | 
						|
          type = "gpt";
 | 
						|
          partitions = {
 | 
						|
            ESP = {
 | 
						|
              type = "EF00";
 | 
						|
              size = "512M";
 | 
						|
              content = {
 | 
						|
                type = "filesystem";
 | 
						|
                format = "vfat";
 | 
						|
                mountpoint = "/boot";
 | 
						|
              };
 | 
						|
            };
 | 
						|
            root = {
 | 
						|
              size = "100%";
 | 
						|
              content = {
 | 
						|
                type = "filesystem";
 | 
						|
                format = "ext4";
 | 
						|
                mountpoint = "/";
 | 
						|
              };
 | 
						|
            };
 | 
						|
          };
 | 
						|
        };
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |