Files
Nixos/machines/izanagi/disko-config.nix
T
Alexander Derevianko 045687bb5f Added izanagi
2025-07-31 16:46:33 +02:00

32 lines
560 B
Nix

{
username,
...
}:
{
disko.devices = {
disk = {
main = {
device = "/dev/vda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}