nixos-config/system/nix.nix

19 lines
438 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
nix.gc = {
automatic = true;
2022-05-03 22:44:29 +02:00
dates = "04:00";
2019-10-19 12:55:35 +02:00
options = "--delete-older-than 30d";
};
2021-01-16 17:52:54 +01:00
2022-01-31 22:49:52 +01:00
nix.settings = {
auto-optimise-store = true;
substituters = [ "https://hydra.iohk.io" "https://shajra.cachix.org" ];
trusted-public-keys = [
"hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
"shajra.cachix.org-1:V0x7Wjgd/mHGk2KQwzXv8iydfIgLupbnZKLSQt5hh9o="
];
};
2019-10-19 12:55:35 +02:00
}