petersweb-infra/nixos/secrets/default.nix

21 lines
639 B
Nix
Raw Normal View History

2026-05-04 13:44:07 -08:00
let
mainframePublicKey = builtins.readFile ../keys/mainframe.pub;
2024-11-15 22:00:01 -09:00
in {
# This .age file should contain the following environment variables:
# NEARLYFREESPEECH_API_KEY
# NEARLYFREESPEECH_LOGIN
"./nearlyfreespeech.age".publicKeys = [mainframePublicKey];
2024-12-22 02:18:59 -09:00
# WEBDAV_PASSWORD
"./webdav.age".publicKeys = [mainframePublicKey];
2026-05-04 13:44:07 -08:00
# ANTHROPIC_API_KEY
"./anthropic-api-key.age".publicKeys = [mainframePublicKey];
2026-05-23 20:12:53 -08:00
# POSTMARK_SERVER_TOKEN
"./postmark.age".publicKeys = [mainframePublicKey];
2026-05-24 23:03:36 -08:00
2026-05-24 23:31:05 -08:00
# TOKEN=<forgejo runner registration token from Forgejo admin>
2026-05-24 23:03:36 -08:00
"./forgejo-runner-token.age".publicKeys = [mainframePublicKey];
2024-11-15 22:00:01 -09:00
}