nixos-config/2configs/binary-cache/lass.nix

14 lines
276 B
Nix
Raw Normal View History

2016-07-14 22:31:27 +02:00
{ config, ... }:
{
2023-01-23 00:41:26 +01:00
nix.settings = {
substituters = [
2018-12-13 01:46:01 +01:00
"https://cache.krebsco.de"
2016-07-14 22:31:27 +02:00
];
2023-01-23 00:41:26 +01:00
trusted-public-keys = [
2016-07-14 22:31:27 +02:00
"cache.prism-1:+S+6Lo/n27XEtvdlQKuJIcb1yO5NUqUCE2lolmTgNJU="
"cache.prism-2:YwmCm3/s/D+SxrPKN/ETjlpw/219pNUbpnluatp6FKI="
2016-07-14 22:31:27 +02:00
];
};
}