dotfiles/modules/cli/nix.nix

15 lines
269 B
Nix

{ config, lib, pkgs, ... }:
{
nix = {
gc = {
automatic = true;
options = "--max-freed $((32 * 1024**3)) --delete-older-than 14d";
dates = "weekly";
};
optimise.automatic = true;
settings.trusted-users = [ "root" "@wheel" ];
};
}