nixcfg/nixosModules/systemConfig/zramSwap/default.nix

14 lines
263 B
Nix
Raw Normal View History

{ pkgs, lib, config, ... }: {
options = {
systemConfig.zramSwap.enable = lib.mkEnableOption "Enables zram swap.";
};
config = lib.mkIf config.systemConfig.zramSwap.enable {
zramSwap = {
2024-03-28 16:40:23 -04:00
enable = true;
memoryPercent = 25;
};
};
}