This repository has been archived on 2025-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/options/device/zram.nix

22 lines
361 B
Nix

{ lib, config, ... }:
let
cfg = device.zram;
in
{
options = {
device.zram = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Zram settings for the device.";
};
};
};
config = lib.mkIf cfg.enable {
zramSwap = {
enable = true;
memoryPercent = 100;
};
};
}