From d45f48427b7b8bf0c5a2faca5ec0db24a20694c4 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Tue, 9 Sep 2025 12:37:17 +0200 Subject: [PATCH] Remove cache pool --- hosts/nixos/hs/system.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hosts/nixos/hs/system.nix b/hosts/nixos/hs/system.nix index e1fecce..644cbb1 100644 --- a/hosts/nixos/hs/system.nix +++ b/hosts/nixos/hs/system.nix @@ -28,7 +28,6 @@ boot.initrd.systemd.enable = true; boot.supportedFilesystems = [ "zfs" "xfs" ]; boot.zfs.forceImportRoot = false; - boot.zfs.extraPools = [ "cache" ]; # Auto-import additional pools # ZFS ARC memory configuration for 32GB system boot.kernelParams = [ @@ -149,7 +148,7 @@ autoScrub = { enable = true; interval = "monthly"; - pools = [ "rpool" "cache" ]; + pools = [ "rpool" ]; }; autoSnapshot = { enable = true;