{ ... }: { disko.devices = { disk.main = { type = "disk"; device = "/dev/sda"; content = { type = "gpt"; partitions = { # bios = { # size = "1M"; # # content = { # # type = "EF02"; # # }; # }; root = { priority = 1; size = "100%"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; extraArgs = [ "-L" "nixos" ]; }; }; }; }; }; disk.swap = { type = "disk"; device = "/dev/sdb"; content = { type = "gpt"; partitions = { swap = { priority = 1; size = "100%"; content = { type = "swap"; extraArgs = [ "-L" "swap" ]; }; }; }; }; }; }; }