{ lib, ... }: { disko.devices.disk.primary = { device = lib.mkDefault "/dev/disk/by-id/nvme-WD_BLACK_SN850X_2000GB_240264805134"; type = "disk"; content = { type = "gpt"; partitions = { ESP = { size = "4G"; type = "EF00"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; mountOptions = [ "defaults" "umask=0077" ]; }; }; root = { size = "100%"; type = "8300"; content = { type = "btrfs"; subvolumes = { "/root" = { mountpoint = "/"; }; "/nix" = { mountOptions = [ "compress=zstd" "noatime" "noacl" ]; mountpoint = "/nix"; }; }; }; }; }; }; }; }