snowflake/hosts/ame/disko-config.nix

34 lines
702 B
Nix
Raw Normal View History

2024-04-22 18:02:29 -04:00
{
disko.devices = {
disk = {
2024-04-22 18:48:07 -04:00
sda = {
device = "/dev/sda";
2024-04-22 18:02:29 -04:00
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
end = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
name = "root";
end = "-0";
content = {
type = "filesystem";
format = "bcachefs";
mountpoint = "/";
};
};
};
};
};
};
};
}