homelab/hosts/yggdrasil/disko.nix
2026-05-20 23:04:42 +09:00

35 lines
670 B
Nix

{...}: {
disko.devices = {
disk.main = {
type = "disk";
device = "/dev/disk/by-id/ata-SAMSUNG_MZNLN128HCGR-000_S200NYAG700346";
content = {
type = "gpt";
partitions = {
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
}