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

30 lines
580 B
Nix
Raw Normal View History

2024-08-07 17:26:34 +02:00
{
disko.devices = {
disk = {
vda = {
device = "/dev/vda";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
type = "EF00";
2024-11-28 23:23:21 +01:00
size = "100%";
2024-08-07 17:26:34 +02:00
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
};
};
};
};
};
2024-11-28 23:23:21 +01:00
boot.initrd.kernelModules = [ "virtiofs" ];
fileSystems."/" = {
device = "root";
fsType = "virtiofs";
};
2024-08-07 17:26:34 +02:00
}