Merge pull request 'Changed names to correspond to appropriate environment variable names, used during nixos-infect' (#1) from ilchub/selfprivacy-nixos-config:master into master

Reviewed-on: inex/selfprivacy-nixos-config#1
master
Inex Code 2021-11-15 17:11:53 +02:00
commit c2da16b16c
1 changed files with 13 additions and 13 deletions

View File

@ -12,24 +12,24 @@ Example JSON config:
```json ```json
{ {
"backblaze": { "backblaze": {
"accountId": "KEY ID", "accountId": "BACKBLAZE_KEY_ID",
"accountKey": "KEY", "accountKey": "BACKBLAZE_ACCOUNT_KEY",
"bucket": "selfprivacy" "bucket": "BACKBLAZE_BUCKET_NAME"
}, },
"bitwarden": { "bitwarden": {
"enable": true "enable": true
}, },
"cloudflare": { "cloudflare": {
"apiKey": "KEY" "apiKey": "CF_TOKEN"
}, },
"databasePassword": "PASSWORD", "databasePassword": "DB_PASSWORD",
"domain": "meow-corp.xyz", "domain": "DOMAIN",
"hashedMasterPassword": "HASHED PASSWORD", "hashedMasterPassword": "HASHED_PASSWORD",
"hostname": "meow-corp", "hostname": "DOMAIN",
"nextcloud": { "nextcloud": {
"enable": true, "enable": true,
"adminPassword": "PASS", "adminPassword": "PASSWORD",
"databasePassword": "PASS" "databasePassword": "PASSWORD"
}, },
"gitea": { "gitea": {
"enable": true "enable": true
@ -44,7 +44,7 @@ Example JSON config:
"enable": true "enable": true
}, },
"timezone": "Europe/Moscow", "timezone": "Europe/Moscow",
"resticPassword": "PASS", "resticPassword": "PASSWORD",
"ssh": { "ssh": {
"enable": true, "enable": true,
"rootSshKeys": [ "rootSshKeys": [
@ -55,8 +55,8 @@ Example JSON config:
"username": "owner", "username": "owner",
"users": [ "users": [
{ {
"hashedPassword": "HASHED PASSWORD", "hashedPassword": "HASHED_PASSWORD",
"username": "tester" "username": "LUSER"
} }
] ]
} }