This commit is contained in:
Johannes Jöns 2024-01-19 00:22:27 +01:00
parent e0d442aca5
commit 13425379e7

View file

@ -51,47 +51,37 @@
}; };
disko.devices = { disko.devices = {
disk = { disk = {
one = { vdb = {
type = "disk";
device = "/dev/disk/by-id/nvme-SAMSUNG_MZVL2512HCJQ-00B00_S675NX0RA55622"; device = "/dev/disk/by-id/nvme-SAMSUNG_MZVL2512HCJQ-00B00_S675NX0RA55622";
type = "disk";
content = { content = {
type = "gpt"; type = "table";
partitions = { format = "msdos";
ESP = { partitions = [
type = "EF00"; {
size = "500M"; name = "ESP";
start = "1M";
end = "500M";
bootable = true;
content = { content = {
type = "filesystem"; type = "filesystem";
format = "vfat"; format = "vfat";
mountpoint = "/boot"; mountpoint = "/boot";
}; };
}; }
root = { {
size = "100%"; name = "root";
start = "500M";
end = "100%";
part-type = "primary";
bootable = true;
content = { content = {
type = "filesystem"; type = "filesystem";
format = "ext4"; format = "ext4";
mountpoint = "/"; mountpoint = "/";
}; };
}; }
}; ];
};
};
two = {
type = "disk";
device = "/dev/disk/by-id/nvme-SAMSUNG_MZVL2512HCJQ-00B00_S675NX0RA55649";
content = {
type = "gpt";
partitions = {
extra = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/media/extra";
};
};
};
}; };
}; };
}; };