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];
|
2026-05-25 17:08:15 -08:00
|
|
|
|
|
|
|
|
# VNC_PASSWORD=<vnc session password>
|
|
|
|
|
"./vnc-password.age".publicKeys = [mainframePublicKey];
|
|
|
|
|
|
|
|
|
|
# htpasswd-format credentials for nginx basic auth on vnc.quinefoundation.com
|
|
|
|
|
# Generate with: htpasswd -n <username>
|
|
|
|
|
"./vnc-htpasswd.age".publicKeys = [mainframePublicKey];
|
2024-11-15 22:00:01 -09:00
|
|
|
}
|