dotfiles/modules/cli/nix.nix

11 lines
209 B
Nix

{ config, lib, pkgs, ... }:
{
nix.package = pkgs.nixFlakes;
nix.gc = {
automatic = true;
options = "--max-freed $((32 * 1024**3)) --delete-older-than 14d";
};
nix.optimise.automatic = true;
}