{ disko.devices = { main = { type = "disk"; device = "/dev/nvme0n1"; content = { type = "gpt"; partitions = { ESP = { size = "512M"; type = "EF00"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; mountOptions = [ "umask=0077" ]; }; }; fedora = { }; root = { size = "100%"; content = { type = "btrfs"; extraArgs = [ "-f" ]; subvolumes = { "/" = { mountpoint = "/"; mountOptions = [ "noatime" ]; }; "/nix" = { mountpoint = "/nix"; mountOptions = [ "compress=zstd:1" "noatime" ]; }; "/home" = { mountpoint = "/home"; mountOptions = [ "noatime" ]; }; "/swap" = { mountpoint = "/.swapvol/swapfile"; swap.swapfile.size = "8G"; }; }; }; }; }; }; }; }; }