Use caches

This commit is contained in:
Nathan McCarty 2025-04-16 20:03:49 -04:00
parent cac73262dc
commit fb520a417c

View file

@ -27,4 +27,16 @@
system.stateVersion = "24.11"; system.stateVersion = "24.11";
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Caches
nix.settings = {
trusted-public-keys = [
"nix-cache.stranger.systems:DrIF2T1eqAsxWQIz/HvjO7TxtcJwpg0nMAbPfndvvzw="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
substituters = [
"https://nix-cache.stranger.systems"
"https://nix-community.cachix.org"
];
};
} }