Files
nixos-config/nixos/modules/memory.nix
T
2025-12-12 21:42:42 +03:00

8 lines
149 B
Nix

{ config, pkgs, lib, ... }:
{
zramSwap.enable = true;
services.btrfs.autoScrub.enable = true;
services.btrfs.autoScrub.interval = "weekly";
}