snowflake/hosts/tsuki/disko-config.nix

34 lines
710 B
Nix
Raw Normal View History

2024-04-22 18:02:29 -04:00
{
disko.devices = {
disk = {
2024-04-22 21:55:21 -04:00
nvme0n1 = {
2024-04-22 18:02:29 -04:00
device = "/dev/nvme0n1";
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 = "/";
};
};
};
};
};
};
};
}