19 lines
359 B
Nix
19 lines
359 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# Turn on compressed memory swap
|
|
zramSwap = {
|
|
enable = true;
|
|
algorithm = "lz4";
|
|
memoryPercent = 25;
|
|
};
|
|
# Automatically optimize and garbage collect the store
|
|
nix = {
|
|
autoOptimiseStore = true;
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 30d";
|
|
};
|
|
};
|
|
}
|