mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
19 lines
364 B
Nix
19 lines
364 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
pkgs-unstable,
|
|
libs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
# Garbage collector of generations
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d"; # every week delete generations older than a month
|
|
};
|
|
# nixpkgs-review crashed my laptop multiple times.
|
|
nix.settings.max-jobs = 2;
|
|
nix.settings.cores = 2;
|
|
}
|