nix-conf/hosts/mikan/disk.nix

24 lines
434 B
Nix
Raw Normal View History

2024-12-25 17:51:47 -05:00
{...}: {
disko.devices.disk.main = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
}