settei/hosts/hijiri-vm/disks.nix

42 lines
974 B
Nix

{bootDevice ? "/dev/vda", ...}: {
disko.devices.disk.bootDisk = {
type = "disk";
device = bootDevice;
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "EFI";
start = "1MiB";
end = "128MiB";
fs-type = "fat32";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
}
{
name = "LINUX";
start = "128MiB";
end = "100%";
content = {
type = "btrfs";
extraArgs = ["-f"];
subvolumes = let
mountOptions = ["compress=zstd" "noatime"];
in {
"/root" = {
inherit mountOptions;
mountpoint = "/";
};
"/nix" = {inherit mountOptions;};
};
};
}
];
};
};
}