From 7c00258b98b880b084b3e47bca48a58503f574d2 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Thu, 23 Mar 2023 01:52:27 +0300 Subject: [PATCH] Increase zfs arc size to 3 gb --- machines/Home-Hypervisor/boot.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/Home-Hypervisor/boot.nix b/machines/Home-Hypervisor/boot.nix index f7ab5d9..6ac59a1 100644 --- a/machines/Home-Hypervisor/boot.nix +++ b/machines/Home-Hypervisor/boot.nix @@ -1,6 +1,6 @@ { config, pkgs, lib, ... }: let - zfs_arc_max = toString (2 * 1024 * 1024 * 1024); + zfs_arc_max = toString (3 * 1024 * 1024 * 1024); in { boot = { # extraModprobeConfig = '' @@ -82,4 +82,4 @@ in { }; # cleanTmpDir = true; }; -} \ No newline at end of file +}