15 lines
506 B
Text
15 lines
506 B
Text
{ pkgs, config, lib, ... }:
|
|
|
|
{
|
|
# Copy this file to secrets.nix and fill in real values
|
|
mySecrets = {
|
|
forgejoDb = "changeme_forgejo_db";
|
|
stalwartAdmin = "changeme_stalwart_admin";
|
|
searxKey = "changeme_searx_secret";
|
|
minecraftRcon = "changeme_rcon";
|
|
tailscaleKey = "tskey-auth-PLACEHOLDER";
|
|
sshPublicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAA...";
|
|
matrixMacaroon = "changeme_matrix_macaroon_secret_key";
|
|
ntfyAdminHash = "changeme_bcrypt_hash_from_ntfy_user_hash";
|
|
};
|
|
}
|