petersweb-infra/nixos/secrets/default.nix

12 lines
346 B
Nix
Raw Normal View History

2024-11-15 22:00:01 -09:00
{}: let
mainframePublicKey = builtins.toString "../keys/mainframe.pub";
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];
2024-11-15 22:00:01 -09:00
}