config-perso/machines/kat-son/disks.nix

34 lines
733 B
Nix
Raw Normal View History

2024-06-25 10:54:31 +02:00
{
disko.devices = {
disk = {
vda = {
device = "/dev/vda";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
size = "100M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "bcachefs";
mountpoint = "/";
2024-07-29 14:39:16 +02:00
mountOptions = [ "fsck" "fix_errors" ];
2024-06-25 10:54:31 +02:00
};
};
};
};
};
};
};
}