summaryrefslogtreecommitdiff
path: root/system/nix.nix
blob: 7d8971dc846d57b877ce7d32866d822c7807d8c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, ... }:
{
  nix = {
    trustedUsers = [ "@wheel" ];
    daemonIONiceLevel = 3;
    daemonNiceLevel = 17;
    gc = {
      automatic = true;
      options = "--delete-older-than 14d";
    };
    optimise = {
      automatic = true;
      dates = [ "Sun 03:45" ];
    };
  };
}