Immutable NixOS config
Go to file
Inex Code bfe0d18090 chore: Switch to API 2.1.0 2022-12-30 21:34:23 +03:00
api fix: one more path to backups data 2022-11-08 02:55:26 +03:00
backup fix: path to backup backet 2022-11-08 02:49:12 +03:00
git feat: a redis database for SelfPrivacy API 2022-11-04 11:57:00 +03:00
letsencrypt feat: add dns.useStagingACME option 2022-11-16 11:02:20 +03:00
mailserver/system chore(mailserver): Update the simple-nixos-mailserver to the 22.05 version 2022-10-20 23:19:04 +03:00
nextcloud chore(nextcloud): Upgrade Nextcloud to v24 2022-10-28 11:52:47 +03:00
passmgr Switched to binds, volume management, new API 2022-08-26 14:21:05 +04:00
resources Initial commit 2021-11-15 13:02:05 +03:00
social Switched to binds, volume management, new API 2022-08-26 14:21:05 +04:00
userdata Move secrets out of Nix Store (#19) 2022-07-19 15:18:46 +03:00
videomeet roll back the roll back 2022-02-16 11:06:51 +03:00
vpn Add groups to users 2022-04-20 13:22:16 +03:00
webserver Switched to binds, volume management, new API 2022-08-26 14:21:05 +04:00
.gitignore Add tokens.json to gitignore 2022-04-29 16:40:59 +03:00
LICENSE Изменил(а) на 'LICENSE' 2021-11-18 10:08:19 +02:00
README.md Update README 2021-11-16 19:22:36 +03:00
configuration.nix chore: Switch to API 2.1.0 2022-12-30 21:34:23 +03:00
files.nix feat(userdata): Support for newer JSON schema of provider 2022-11-08 01:44:09 +03:00
users.nix Move secrets out of Nix Store (#19) 2022-07-19 15:18:46 +03:00
variables-module.nix feat: add dns.useStagingACME option 2022-11-16 11:02:20 +03:00
variables.nix feat: add dns.useStagingACME option 2022-11-16 11:02:20 +03:00
volumes.nix Switched to binds, volume management, new API 2022-08-26 14:21:05 +04:00

README.md

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"
        }
    ]
}