{ config, ... }: { disko.devices.disk.main = { content = { partitions = { ESP = { content = { format = "vfat"; mountOptions = [ "umask=0077" ]; mountpoint = "/boot"; type = "filesystem"; }; size = "512M"; type = "EF00"; }; luks = { content = { content = { extraArgs = [ "-f" ]; subvolumes = { "/home" = { mountOptions = [ "noatime" ]; mountpoint = "/home"; }; "/nix" = { mountOptions = [ "noatime" ]; mountpoint = "/nix"; }; "/root" = { mountOptions = [ "noatime" ]; mountpoint = "/"; }; }; type = "btrfs"; }; name = "root"; type = "luks"; }; size = "100%"; }; }; type = "gpt"; }; device = "/dev/nvme0n1"; type = "disk"; }; }