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

25 lines
493 B
Nix

{
disko.devices = {
disk = {
main = {
device = "/dev/sda";
type = "disk";
content = {
type = "msdos";
partitions = {
root = {
name = "nixos";
bootable = true;
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}