add cachix community binary cache

This commit is contained in:
Noah Masur 2023-03-03 09:39:42 -05:00
parent cda3ee0a4c
commit fb47302f3b

View File

@ -77,12 +77,29 @@
config = let stateVersion = "23.05";
in {
nix = {
# Enable features in Nix commands
nix.extraOptions = ''
extraOptions = ''
experimental-features = nix-command flakes
warn-dirty = false
'';
settings = {
# Add community Cachix to binary cache
substituters = [ "https://nix-community.cachix.org" ];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
# Scans and hard links identical files in the store
auto-optimise-store = true;
};
};
# Basic common system packages for all devices
environment.systemPackages = with pkgs; [ git vim wget curl ];