Files
NixConfig/nixos/conf/GM/cfgeral/zstd.nix
T
2025-12-15 15:14:52 -03:00

18 lines
237 B
Nix

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