Files
NixConfig/nixos/conf/GM/cfgeral/zstd.nix
T
2025-10-19 20:22:15 -03:00

20 lines
284 B
Nix

{ config, lib, inputs, pkgs, ... }: {
## compressao brtfs
fileSystems = {
"/" = {
options = [ "compress=zstd:3" ];
};
};
## zram
zramSwap = {
enable = true;
memoryPercent = 70;
algorithm = "zstd";
};
## preload
services.preload.enable = true;
}