{...}: { disko.devices = { disk = { nvme0 = { type = "disk"; device = "/dev/nvme0n1"; content = { type = "gpt"; partitions = { esp = { size = "512M"; type = "EF00"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; mountOptions = [ "defaults" ]; }; }; luks = { size = "100%"; content = { type = "luks"; name = "crypted"; settings.allowDiscards = true; passwordFile = "/tmp/secret.key"; content = { type = "lvm_pv"; vg = "pool"; }; }; }; }; }; }; }; lvm_vg = { pool = { type = "lvm_vg"; lvs = { root = { size = "100M"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; mountOptions = [ "defaults" ]; }; }; home = { size = "10M"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/home"; }; }; raw = { size = "10M"; }; }; }; }; }; }