summary refs log tree commit diff stats
path: root/system/settings/configuration/nix.nix
blob: c8db78366d4f2263de7dc45a73711c85d5f5b028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ config
, lib
, pkgs
, ...
}: {
  imports = [
    ../../../pin.nix
  ];
  nix = {
    settings = {
      cores = lib.mkDefault 0;
      use-xdg-base-directories = true;
      keep-outputs = true;
      keep-derivations = true;
      experimental-features = "nix-command flakes";
      warn-dirty = false;
    };

    gc = {
      automatic = lib.mkDefault true;
      options = lib.mkDefault "--delete-older-than 14d";
    };
  };
}