Skip to content

Commit

Permalink
fix(cache): add missing self substituter
Browse files Browse the repository at this point in the history
  • Loading branch information
klarkc committed Jan 3, 2024
1 parent 4d30322 commit ad3512f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setups/cache/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ let
enable = true;
secretKeyFile = config.age.secrets.cache.path;
};
nix.settings.trusted-substituters = [
"https://${domain}"
];
nix.settings.trusted-public-keys = [
(builtins.readFile ../../secrets/cache.pub)
];
nix.extraOptions = ''
min-free = 2684354560
max-free = 5368709120
Expand Down

0 comments on commit ad3512f

Please sign in to comment.