{ ... }: { disko.devices = { disk = { master = { type = "disk"; device = ""; # [managed by install.sh] content = { type = "gpt"; partitions = { ESP = { priority = 1; name = "efi"; start = "1M"; end = "1024M"; type = "EF00"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; mountOptions = [ "umask=0077" "noatime" ]; }; }; root = { size = "100%"; content = { type = "btrfs"; extraArgs = [ "-f" "-L nixos" ]; subvolumes = { "/root" = { mountpoint = "/"; mountOptions = [ "noatime" "compress=zstd" ]; }; "/nix" = { mountpoint = "/nix"; mountOptions = [ "noatime" "compress=zstd" ]; }; }; }; }; }; }; }; }; }; }