Create proxmox configuration, create izanagi config, update readme, move configurations to /machines/

This commit is contained in:
Alexander Derevianko
2025-07-31 11:55:28 +02:00
parent 20f36c7842
commit 65e54e0991
23 changed files with 521 additions and 4 deletions
+28
View File
@@ -0,0 +1,28 @@
{ username, ... }:
{
disko.devices = {
disk = {
main = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}