Nixos-Configuration/modules/nixos/common/nix.nix
Jermeiah S eaeb15df7f
All checks were successful
/ check (push) Successful in 1m0s
/ deploy (push) Successful in 1m25s
feature: added signing key [deploy]
2025-06-25 21:12:38 -04:00

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/"
];
};
}