nixos-config/configs/nixos/plover/disko.nix

49 lines
1002 B
Nix
Raw Normal View History

{ config, lib, ... }:
2023-06-30 05:38:38 +00:00
{
disko.devices = {
disk.sda = {
device = [ "/dev/sda" ];
type = "disk";
content = {
type = "gpt";
partitions = [
{
name = "boot";
start = "0";
end = "1MiB";
part-type = "primary";
flags = [ "bios_grub" ];
}
2023-06-30 05:38:38 +00:00
{
name = "ESP";
start = "1MiB";
end = "256MiB";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
flags = [ "esp" ];
}
2023-06-30 05:38:38 +00:00
{
name = "root";
start = "256MiB";
end = "100%";
part-type = "primary";
bootable = true;
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
2023-06-30 05:38:38 +00:00
};
};
}