nixfleet/hosts/test/disko.nix
Andrea Ciceri f7302479b3
Some checks failed
/ test (push) Has been cancelled
Switch to catppuccin
2024-06-01 08:39:18 +02:00

33 lines
735 B
Nix

{
disko.devices = {
disk = {
vdb = {
device = "/dev/disk/by-path/pci-0000:02:00.0-nvme-1";
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 = "/";
};
};
};
};
};
};
};
}