garp-server/disko.nix

34 lines
665 B
Nix
Raw Normal View History

2026-04-29 02:12:44 +02:00
{
disko.devices.disk.main = {
2026-04-29 22:49:00 +02:00
device = "/dev/sda";
2026-04-29 02:12:44 +02:00
type = "disk";
content = {
type = "gpt";
partitions = {
2026-04-29 22:49:00 +02:00
boot = {
size = "1M";
type = "EF02";
};
2026-04-29 02:12:44 +02:00
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
}