fix: remove swap because I have alot of mem

This commit is contained in:
Jet Pham 2026-03-08 19:04:38 -07:00
parent c634b77ae1
commit 2e4b2e8a80
No known key found for this signature in database

View file

@ -206,8 +206,7 @@
# RAM optimizations for 96GB system # RAM optimizations for 96GB system
boot.kernel.sysctl = { boot.kernel.sysctl = {
"vm.swappiness" = 0; # Never swap to disk "vm.vfs_cache_pressure" = 50; # Keep more filesystem cache in RAM
"vm.vfs_cache_pressure" = 50; # Keep more filesystem cache in RAM
"vm.dirty_ratio" = 15; # Write to disk when 15% of RAM is dirty "vm.dirty_ratio" = 15; # Write to disk when 15% of RAM is dirty
"vm.dirty_background_ratio" = 5; # Start writing when 5% dirty "vm.dirty_background_ratio" = 5; # Start writing when 5% dirty
}; };