1
0
Fork 0

configuration/common: use nix-cache.clerie.de as a substituter

This commit is contained in:
clerie 2022-11-19 00:06:33 +01:00
parent 686c587587
commit a0406007dd
1 changed files with 9 additions and 1 deletions

View File

@ -82,7 +82,15 @@
acceptTerms = true;
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
substituters = [
"https://nix-cache.clerie.de"
];
trusted-public-keys = [
"nix-cache.clerie.de:bAt1GJTS9BOTcXFWj3nURrSlcjqikCev9yDvqArMP5g="
];
};
nixpkgs.overlays = [
(import ../../pkgs/overlay.nix)