Update de rotina

This commit is contained in:
Guilherme Hermando
2025-08-17 18:45:41 -03:00
committed by GitHub
parent 3c5d19c060
commit 272bfb68d5
8 changed files with 90 additions and 55 deletions
+19
View File
@@ -0,0 +1,19 @@
{ config, lib, inputs, pkgs, ... }: {
## compressao brtfs
fileSystems = {
"/" = {
options = [ "compress=zstd:3" ];
};
};
## zram
zramSwap = {
enable = true;
memoryPercent = 70;
algorithm = "zstd";
};
## preload
services.preload.enable = true;
}