Add a secrets template for use by other people so it doesn't have to be completely reverse engineered
This commit is contained in:
parent
2cf73f517f
commit
e97169c246
3 changed files with 74 additions and 1 deletions
73
extras/secrets-template.nix
Normal file
73
extras/secrets-template.nix
Normal file
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
# Define domains
|
||||
jimDomain = "";
|
||||
|
||||
# User account passwords, generated with 'mkpasswd -m sha-512'
|
||||
jimboAccPass = "";
|
||||
|
||||
# External emails
|
||||
jimUsername = "";
|
||||
jimEmail = "";
|
||||
|
||||
# SSH Keys
|
||||
jimKeys = [
|
||||
""
|
||||
""
|
||||
];
|
||||
|
||||
# System timezone in standard timezone identifier format
|
||||
timeZone = "";
|
||||
|
||||
# Cloudflare API key
|
||||
flareApiKey = "";
|
||||
|
||||
# Wireguard keys, generated with the wg command
|
||||
wgServerPriv = "";
|
||||
wgServerPub = "";
|
||||
wgClientPriv = "";
|
||||
wgClientPub = "";
|
||||
wgPixel9Pub = "";
|
||||
wgOraclePub = "";
|
||||
|
||||
# Icecast, plaintext
|
||||
castAdminPass = "";
|
||||
castSourcePass = "";
|
||||
|
||||
# Photoprism, plaintext
|
||||
prismAdminPass = "";
|
||||
|
||||
# Matrix secrets
|
||||
matrixSecret = "";
|
||||
discordBotID = "";
|
||||
discordBotToken = "";
|
||||
|
||||
# Pixelfed secret, must be 32 characters long
|
||||
pixelfedKey = ''
|
||||
APP_KEY=
|
||||
'';
|
||||
|
||||
# Transmission credentials, plaintext
|
||||
transmissionCredFile = ''
|
||||
{
|
||||
"rpc-username": "",
|
||||
"rpc-password": ""
|
||||
}
|
||||
'';
|
||||
|
||||
# Email cleartext passwords
|
||||
noreplyPassword = "";
|
||||
|
||||
# Email account hashes, generated with 'mkpasswd -m bcrypt'
|
||||
noreplyMailHash = "";
|
||||
jimboMailHash = "";
|
||||
lunaMailHash = "";
|
||||
freecornMailHash = "";
|
||||
tinyMailHash = "";
|
||||
|
||||
# IPs
|
||||
jimIP1 = "";
|
||||
jimIP2 = "";
|
||||
lunaIP = "";
|
||||
cornIP = "";
|
||||
vertIP = "";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue