Added izanagi

This commit is contained in:
Alexander Derevianko
2025-07-31 16:46:33 +02:00
parent c62940176b
commit 045687bb5f
10 changed files with 314 additions and 7 deletions
+31
View File
@@ -0,0 +1,31 @@
{
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 = "/";
};
};
};
};
};
};
};
}