disko/example/zfs-over-legacy.nix

67 lines
1.4 KiB
Nix
Raw Normal View History

2022-10-21 15:43:55 +03:00
{ disks ? [ "/dev/vdb" "/dev/vdc" ], ... }: {
disk = {
2022-08-26 13:50:52 +03:00
vdb = {
type = "disk";
device = builtins.elemAt disks 0;
content = {
type = "table";
format = "gpt";
partitions = [
{
type = "partition";
name = "ESP";
start = "1MiB";
end = "100MiB";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
];
};
}
{
type = "partition";
start = "100MiB";
end = "100%";
name = "primary";
bootable = true;
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
2022-08-26 13:50:52 +03:00
};
vdc = {
type = "disk";
device = builtins.elemAt disks 1;
content = {
type = "zfs";
pool = "zroot";
};
2022-08-26 13:50:52 +03:00
};
};
zpool = {
2022-08-26 13:50:52 +03:00
zroot = {
type = "zpool";
datasets = {
"root" = {
zfs_type = "filesystem";
options.mountpoint = "none";
};
"root/zfs_fs" = {
zfs_type = "filesystem";
2022-08-26 13:50:52 +03:00
mountpoint = "/zfs_fs";
options."com.sun:auto-snapshot" = "true";
};
};
2022-08-26 13:50:52 +03:00
};
};
}