nix-dotfiles/hosts/server/disk-config.nix
2025-10-28 05:53:36 -06:00

28 lines
562 B
Nix

{lib, ...}: {
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/xvda";
content = {
type = "gpt";
partitions = {
MBR = {
type = "EF02";
size = "1M";
priority = 1;
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}