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