nix-config/hosts/rockhole64/disk-config.nix

33 lines
703 B
Nix
Raw Normal View History

{
disko.devices = {
disk = {
emmc = {
device = "/dev/disk/by-id/mmc-A3A442_0x7a73362f";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "512M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}