renamed hetzner-multi to cirrus.

This commit is contained in:
Gabe Venberg 2024-07-29 12:34:24 -05:00
parent 511b8332ed
commit 6dcbb146b7
4 changed files with 5 additions and 4 deletions

View file

@ -0,0 +1,38 @@
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
priority = 1;
};
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}