summary refs log tree commit diff stats
path: root/nix.nix
blob: 02fa333a51cb2ed9af146724f881183e6aab2544 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ config, lib, pkgs, ... }:
{
	nix = {
		gc = {
			automatic = true;
			dates = "daily";
			options = "--delete-older-than 3";
		};
		settings.auto-optimise-store = true;
	};
}