nix bare for netcup

This commit is contained in:
Harivansh Rathi 2026-03-29 13:35:07 -04:00
parent 0804b2a49b
commit ef6da7dc79
6 changed files with 195 additions and 12 deletions

View file

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