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

29 lines
577 B
Nix
Raw Normal View History

2025-06-17 00:59:37 +03:00
{
disko.devices = {
disk = {
main = {
device = "/dev/sda";
type = "disk";
content = {
type = "table";
format = "msdos";
partitions = [
{
2025-06-17 00:59:37 +03:00
name = "nixos";
part-type = "primary";
2025-06-17 03:15:20 +03:00
bootable = true;
start = "1M";
end = "100%";
2025-06-17 00:59:37 +03:00
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
2025-06-17 00:59:37 +03:00
};
};
};
};
}