2019-10-19 12:55:35 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
nix.autoOptimiseStore = true;
|
|
|
|
nix.gc = {
|
|
|
|
automatic = true;
|
2019-11-04 10:01:05 +01:00
|
|
|
dates = "10:00";
|
2019-10-19 12:55:35 +02:00
|
|
|
options = "--delete-older-than 30d";
|
|
|
|
};
|
2021-01-16 17:52:54 +01:00
|
|
|
|
2021-12-22 17:15:29 +01:00
|
|
|
nix.binaryCaches = [ "https://hydra.iohk.io" "https://shajra.cachix.org" ];
|
2021-06-02 19:17:20 +02:00
|
|
|
nix.binaryCachePublicKeys = [
|
|
|
|
"hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
|
2021-10-29 20:26:43 +02:00
|
|
|
"shajra.cachix.org-1:V0x7Wjgd/mHGk2KQwzXv8iydfIgLupbnZKLSQt5hh9o="
|
2021-06-02 19:17:20 +02:00
|
|
|
];
|
2019-10-19 12:55:35 +02:00
|
|
|
}
|