My Nix Configuration
1{ 2 disko.devices.disk = { 3 main = { 4 type = "disk"; 5 device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_33656227"; 6 content = { 7 type = "gpt"; 8 partitions = { 9 boot = { 10 size = "1M"; 11 type = "EF02"; 12 }; 13 root = { 14 size = "100%"; 15 content = { 16 type = "filesystem"; 17 format = "btrfs"; 18 mountpoint = "/"; 19 }; 20 }; 21 }; 22 }; 23 }; 24 }; 25}