Increase zfs arc size to 3 gb

This commit is contained in:
Dmitriy Kholkin 2023-03-23 01:52:27 +03:00
parent b108f041d9
commit 7c00258b98

View File

@ -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;
};
}
}