dotfiles/nixos/boxes/mb1/disks.nix

38 lines
831 B
Nix
Raw Normal View History

2023-04-07 14:57:29 +01:00
_: {
2023-04-07 11:34:18 +01:00
disko.devices = {
disk = {
2025-02-01 20:16:17 +00:00
main = {
2023-04-07 11:34:18 +01:00
device = "/dev/vda";
2025-02-01 20:16:17 +00:00
type = "disk";
2023-04-07 11:34:18 +01:00
content = {
2025-02-01 20:16:17 +00:00
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = {
type = "EF00";
size = "512M";
2023-04-07 11:34:18 +01:00
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
2025-02-01 20:16:17 +00:00
mountOptions = ["umask=0077"];
2023-04-07 11:34:18 +01:00
};
2025-02-01 20:16:17 +00:00
};
root = {
size = "100%";
2023-04-07 11:34:18 +01:00
content = {
type = "filesystem";
2025-02-01 20:16:17 +00:00
format = "ext4";
2023-04-07 11:34:18 +01:00
mountpoint = "/";
};
2025-02-01 20:16:17 +00:00
};
};
2023-04-07 11:34:18 +01:00
};
};
};
};
}