cherry disko configuration update

This commit is contained in:
Ingolf Wagner 2024-03-03 17:42:49 +01:00
parent da6dc4857b
commit b9b71ff821
Signed by: palo
GPG key ID: 76BF5F1928B9618B

View file

@ -1,4 +1,3 @@
{ config, lib, ... }:
{
# disko configuration
@ -9,25 +8,22 @@
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "ESP";
start = "0";
end = "500MiB";
bootable = true;
type = "gpt";
partitions = {
boot = {
priority = 1;
size = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "defaults" ];
};
}
{
name = "zfs";
start = "500MiB";
end = "100%";
};
root = {
priority = 100;
size = "100%";
content = {
type = "luks";
name = "root";
@ -38,8 +34,8 @@
pool = "zroot";
};
};
}
];
};
};
};
};
};