feat: add disko disk layout for blade (single SSD)

This commit is contained in:
2026-07-18 02:31:34 +01:00
parent 7277a1db1c
commit 7a33a3198e

31
hosts/blade/disko.nix Normal file
View File

@@ -0,0 +1,31 @@
{
disko.devices = {
disk.main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
boot = {
size = "1G";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "fmask=0022" "dmask=0022" ];
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
}