{inputs, ...}: let device = "/dev/sda"; in { imports = [ inputs.disko.nixosModules.disko ]; disko.devices = { disk.${baseNameOf device} = { inherit device; type = "disk"; content = { type = "table"; format = "gpt"; partitions = [ { type = "partition"; name = "ESP"; start = "1MiB"; end = "512MiB"; bootable = true; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; }; } { name = "nix"; type = "partition"; start = "512M"; end = "100%"; part-type = "primary"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/nix"; }; } ]; }; }; nodev."/" = { fsType = "tmpfs"; mountOptions = [ "size=3G" "defaults" "mode=755" ]; }; }; }