mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-04 16:03:12 +00:00
80ba7d0bda
+ simple-nixos-mailserver as an SP module |
||
---|---|---|
api | ||
backup | ||
git | ||
letsencrypt | ||
nextcloud | ||
passmgr | ||
resources | ||
social | ||
sp-modules/simple-nixos-mailserver | ||
userdata | ||
videomeet | ||
vpn | ||
webserver | ||
.gitignore | ||
configuration.nix | ||
files.nix | ||
flake.lock | ||
flake.nix | ||
LICENSE | ||
README.md | ||
userdata-variables.nix | ||
users.nix | ||
variables-module.nix | ||
volumes.nix |
SelfPrivacy NixOS configuration
This is a NixOS config which builds a SelfPrivacy server distribution
based on data provided in userdata/userdata.json
.
JSON schema is provided in userdata/schema.json
for reference.
hardware-configuration.nix is not included.
Example JSON config:
{
"backblaze": {
"accountId": "BACKBLAZE_KEY_ID",
"accountKey": "BACKBLAZE_ACCOUNT_KEY",
"bucket": "BACKBLAZE_BUCKET_NAME"
},
"api": {
"token": "API_TOKEN",
"enableSwagger": false
},
"bitwarden": {
"enable": true
},
"cloudflare": {
"apiKey": "CF_TOKEN"
},
"databasePassword": "DB_PASSWORD",
"domain": "DOMAIN",
"hashedMasterPassword": "HASHED_PASSWORD",
"hostname": "DOMAIN",
"nextcloud": {
"enable": true,
"adminPassword": "PASSWORD",
"databasePassword": "PASSWORD"
},
"gitea": {
"enable": true
},
"jitsi": {
"enable": true
},
"ocserv": {
"enable": true
},
"pleroma": {
"enable": true
},
"timezone": "Europe/Moscow",
"resticPassword": "PASSWORD",
"ssh": {
"enable": true,
"rootSshKeys": [
"ssh-ed25519 KEY user@host"
],
"passwordAuthentication": true
},
"username": "LUSER",
"users": [
{
"hashedPassword": "OTHER_USER_HASHED_PASSWORD",
"username": "OTHER_USER"
}
]
}