optimizations

This commit is contained in:
2026-04-07 21:02:27 +02:00
parent df6269323b
commit 4e72e8a170
+15 -3
View File
@@ -9,7 +9,7 @@
partitions = { partitions = {
ESP = { ESP = {
label = "EFI"; label = "EFI";
size = "512MiB"; size = "512M";
type = "EF00"; type = "EF00";
content = { content = {
type = "filesystem"; type = "filesystem";
@@ -82,7 +82,10 @@
nix = { nix = {
type = "zfs_fs"; type = "zfs_fs";
mountpoint = "/nix"; mountpoint = "/nix";
options.mountpoint = "legacy"; options = {
mountpoint = "legacy";
"com.sun:auto-snapshot" = "false";
};
}; };
persist = { persist = {
@@ -108,9 +111,18 @@
options.mountpoint = "legacy"; options.mountpoint = "legacy";
}; };
"var/vmail" = {
type = "zfs_fs";
mountpoint = "/var/vmail";
options = {
mountpoint = "legacy";
recordsize = "128K";
};
};
reserved = { reserved = {
type = "zfs_volume"; type = "zfs_volume";
size = "1G"; size = "4G";
}; };
}; };
}; };