nix-dotfiles/hosts/server/disk-config.nix
2026-01-03 12:47:45 -07:00

48 lines
1,003 B
Nix

{lib, ...}: {
disko.devices = {
disk = {
boot = {
type = "disk";
device = "/dev/xvda";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
mbr = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/boot";
};
};
};
};
};
main = {
type = "disk";
device = "/dev/xvdb";
content = {
type = "gpt";
partitions = {
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
fileSystems."/home" = {
device = "/dev/data/home";
fsType = "ext4";
};
}