disko/example/zfs-over-legacy.nix

67 lines
1.5 KiB
Nix
Raw Normal View History

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