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

40 lines
907 B
Nix
Raw Normal View History

2024-06-18 09:47:57 +02:00
{
disko.devices = {
disk = {
sda = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
type = "EF02";
size = "1M";
priority = 1;
};
ESP = {
type = "EF00";
size = "100M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "bcachefs";
mountpoint = "/";
2024-06-19 08:34:47 +02:00
extraArgs = [ "--compression=zstd" ];
2024-07-29 14:39:16 +02:00
mountOptions = [ "fsck" "fix_errors" ];
2024-06-18 09:47:57 +02:00
};
};
};
};
};
};
};
}