From 4e72e8a1701eb4026e03ec9e2fcff446b6b0f749 Mon Sep 17 00:00:00 2001 From: Love Billenius Date: Tue, 7 Apr 2026 21:02:27 +0200 Subject: [PATCH] optimizations --- modules/hosts/hermes/disko.nix | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/modules/hosts/hermes/disko.nix b/modules/hosts/hermes/disko.nix index df876ec..ab1004e 100644 --- a/modules/hosts/hermes/disko.nix +++ b/modules/hosts/hermes/disko.nix @@ -9,7 +9,7 @@ partitions = { ESP = { label = "EFI"; - size = "512MiB"; + size = "512M"; type = "EF00"; content = { type = "filesystem"; @@ -82,7 +82,10 @@ nix = { type = "zfs_fs"; mountpoint = "/nix"; - options.mountpoint = "legacy"; + options = { + mountpoint = "legacy"; + "com.sun:auto-snapshot" = "false"; + }; }; persist = { @@ -108,9 +111,18 @@ options.mountpoint = "legacy"; }; + "var/vmail" = { + type = "zfs_fs"; + mountpoint = "/var/vmail"; + options = { + mountpoint = "legacy"; + recordsize = "128K"; + }; + }; + reserved = { type = "zfs_volume"; - size = "1G"; + size = "4G"; }; }; };