19 lines
320 B
Nix
19 lines
320 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
self',
|
|
...
|
|
}:
|
|
{
|
|
nix.settings = {
|
|
trusted-public-keys = [
|
|
"forgejo-runner-tofu.local:iaY0LQcytexYeZWKbV3EaoHWmvS3tThLWDUYN02T534="
|
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
|
];
|
|
substituters = [
|
|
"https://cache.nixos.org/"
|
|
];
|
|
};
|
|
|
|
}
|