nixos-conf/shared/disko/hetzner-ext4.nix

28 lines
577 B
Nix

{
disko.devices = {
disk = {
main = {
device = "/dev/sda";
type = "disk";
content = {
type = "table";
format = "msdos";
partitions = [
{
name = "nixos";
part-type = "primary";
bootable = true;
start = "1M";
end = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
};
};
};
}