# Disko layout for cloud VPS installs (e.g. Hetzner Cloud). # No LUKS — the provider has physical disk access anyway and there's # no operator present at boot to enter a passphrase. { disko.devices = { disk.main = { type = "disk"; device = "/dev/sda"; content = { type = "gpt"; partitions = { ESP = { size = "512M"; type = "EF00"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; mountOptions = [ "fmask=0022" "dmask=0022" ]; }; }; root = { size = "100%"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; }; }; }; }; }; }; }