This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/profiles/global/nix.nix

42 lines
785 B
Nix
Raw Normal View History

2024-03-24 20:01:03 -05:00
{ lib, config, ... }:
2024-03-24 17:23:35 -05:00
{
2024-03-24 20:01:03 -05:00
nix.settings = {
# Enable flakes
experimental-features = [
"nix-command"
"flakes"
];
2024-03-24 17:23:35 -05:00
2024-03-24 20:01:03 -05:00
# Substitutions
trusted-substituters = [
"https://nix-community.cachix.org"
"https://numtide.cachix.org"
];
2024-03-24 17:23:35 -05:00
2024-03-24 20:01:03 -05:00
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"numtide.cachix.org-1:2ps1kLBUWjxIneOy1Ik6cQjb41X0iXVXeHigGmycPPE="
];
2024-03-24 17:23:35 -05:00
2024-03-24 20:01:03 -05:00
# Fallback quickly if substituters are not available.
connect-timeout = 5;
# Avoid copying unnecessary stuff over SSH
builders-use-substitutes = true;
2024-03-24 17:23:35 -05:00
2024-03-24 20:01:03 -05:00
trusted-users = [ "root" "@wheel" ];
2024-03-24 17:23:35 -05:00
2024-03-24 20:01:03 -05:00
warn-dirty = false;
2024-03-24 17:23:35 -05:00
2024-03-24 20:01:03 -05:00
# The default at 10 is rarely enough.
log-lines = lib.mkDefault 25;
2024-03-24 17:23:35 -05:00
2024-03-24 20:01:03 -05:00
};
2024-03-24 17:23:35 -05:00
}