{ boot.loader.grub.device = "/dev/nvme0"; disko.devices = { disk = { nvme0 = { device = "/dev/nvme0"; content = { type = "table"; format = "gpt"; partitions = [ { name = "BOOT"; start = "0%"; end = "550MiB"; bootable = true; flags = [ "esp" ]; fs-type = "fat32"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; }; } # partition 1 { name = "SWAP"; start = "550 MiB"; end = "120GiB"; content = { type = "luks"; name = "LUKS-SWAP"; extraOpenArgs = [ "--allow-discards" ]; settings.keyFile = ""; content = { type = "swap"; }; }; } # partition 2 { name = "ROOT"; start = "120GiB"; end = "100%"; content = { type = "luks"; name = "LUKS-ROOT"; extraOpenArgs = [ "--allow-discards" ]; settings.keyFile = "/tmp/secret.key"; content = { type = "btrfs"; extraArgs = [ "-f" ]; subvolumes = { "/root" = { mountpoint = "/"; mountOptions = [ "compress=zstd" "noatime" ]; }; # root "/home" = { mountpoint = "/home"; mountOptions = [ "compress=zstd" "noatime" ]; }; # home "/nix" = { mountpoint = "/nix"; mountOptions = [ "compress=zstd" "noatime" ]; }; # nix }; # subvolumes }; # content.content }; # content } # partition 3 ]; # partitions }; # content }; # sda }; # disk }; # disko.devices } # root