mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-23 12:01:27 +00:00
More ifs
This commit is contained in:
parent
e428db106a
commit
3ca55578ac
108
variables.nix
108
variables.nix
|
@ -8,50 +8,122 @@ in
|
||||||
domain = (if jsonData ? "domain" then jsonData.domain else null);
|
domain = (if jsonData ? "domain" then jsonData.domain else null);
|
||||||
timezone = (if jsonData ? "timezone" then jsonData.timezone else "Europe/Uzhgorod");
|
timezone = (if jsonData ? "timezone" then jsonData.timezone else "Europe/Uzhgorod");
|
||||||
autoUpgrade = {
|
autoUpgrade = {
|
||||||
enable = (if jsonData ? "autoUpgrade.enable" then jsonData.autoUpgrade.enable else true);
|
enable = (
|
||||||
allowReboot = (if jsonData ? "autoUpgrade.allowReboot" then jsonData.autoUpgrade.allowReboot else true);
|
if (jsonData ? "autoUpgrade" && jsonData.autoUpgrade ? "enable")
|
||||||
|
then jsonData.autoUpgrade.enable
|
||||||
|
else true
|
||||||
|
);
|
||||||
|
allowReboot = (
|
||||||
|
if (jsonData ? "autoUpgrade" && jsonData.autoUpgrade ? "allowReboot")
|
||||||
|
then jsonData.autoUpgrade.allowReboot
|
||||||
|
else true
|
||||||
|
);
|
||||||
};
|
};
|
||||||
username = (if jsonData ? "username" then jsonData.username else null);
|
username = (if jsonData ? "username" then jsonData.username else null);
|
||||||
hashedMasterPassword = (if jsonData ? "hashedMasterPassword" then jsonData.hashedMasterPassword else null);
|
hashedMasterPassword = (if jsonData ? "hashedMasterPassword" then jsonData.hashedMasterPassword else null);
|
||||||
sshKeys = (if jsonData ? "sshKeys" then jsonData.sshKeys else [ ]);
|
sshKeys = (if jsonData ? "sshKeys" then jsonData.sshKeys else [ ]);
|
||||||
api = {
|
api = {
|
||||||
token = jsonData.api.token;
|
token = jsonData.api.token;
|
||||||
enableSwagger = (if jsonData ? "api.enableSwagger" then jsonData.api.enableSwagger else false);
|
enableSwagger = (
|
||||||
skippedMigrations = (if jsonData ? "api.skippedMigrations" then jsonData.api.skippedMigrations else [ ]);
|
if (jsonData ? "api" && jsonData.api "enableSwagger")
|
||||||
|
then jsonData.api.enableSwagger
|
||||||
|
else false
|
||||||
|
);
|
||||||
|
skippedMigrations = (
|
||||||
|
if (jsonData ? "api" && jsonData.api ? "skippedMigrations")
|
||||||
|
then jsonData.api.skippedMigrations
|
||||||
|
else [ ]
|
||||||
|
);
|
||||||
};
|
};
|
||||||
backblaze = {
|
backblaze = {
|
||||||
bucket = (if jsonData ? "backblaze.bucket" then jsonData.backblaze.bucket else "");
|
bucket = (
|
||||||
accountId = (if jsonData ? "backblaze.accountId" then jsonData.backblaze.accountId else "");
|
if (jsonData ? "backblaze" && jsonData.backblaze ? "bucket")
|
||||||
accountKey = (if jsonData ? "backblaze.accountKey" then jsonData.backblaze.accountKey else "");
|
then jsonData.backblaze.bucket
|
||||||
|
else ""
|
||||||
|
);
|
||||||
|
accountId = (
|
||||||
|
if (jsonData ? "backblaze" && jsonData.backblaze ? "accountId")
|
||||||
|
then jsonData.backblaze.accountId
|
||||||
|
else ""
|
||||||
|
);
|
||||||
|
accountKey = (
|
||||||
|
if (jsonData ? "backblaze" && jsonData.backblaze ? "accountKey")
|
||||||
|
then jsonData.backblaze.accountKey
|
||||||
|
else ""
|
||||||
|
);
|
||||||
};
|
};
|
||||||
cloudflare = {
|
cloudflare = {
|
||||||
apiKey = (if jsonData ? "cloudflare.apiKey" then jsonData.cloudflare.apiKey else null);
|
apiKey = (
|
||||||
|
if (jsonData ? "cloudflare" && jsonData.cloudflare ? "apiKey"))
|
||||||
|
then jsonData.cloudflare.apiKey
|
||||||
|
else null
|
||||||
|
);
|
||||||
};
|
};
|
||||||
databasePassword = (if jsonData ? "databasePassword" then jsonData.databasePassword else null);
|
databasePassword = (if jsonData ? "databasePassword" then jsonData.databasePassword else null);
|
||||||
bitwarden = {
|
bitwarden = {
|
||||||
enable = (if jsonData ? "bitwarden.enable" then jsonData.bitwarden.enable else false);
|
enable = (
|
||||||
|
if (jsonData ? "bitwarden" && jsonData.bitwarden ? "enable")
|
||||||
|
then jsonData.bitwarden.enable
|
||||||
|
else false
|
||||||
|
);
|
||||||
};
|
};
|
||||||
gitea = {
|
gitea = {
|
||||||
enable = (if jsonData ? "gitea.enable" then jsonData.gitea.enable else false);
|
enable = (
|
||||||
|
if (jsonData ? "gitea" && jsonData.gitea ? "enable")
|
||||||
|
then jsonData.gitea.enable
|
||||||
|
else false
|
||||||
|
);
|
||||||
};
|
};
|
||||||
nextcloud = {
|
nextcloud = {
|
||||||
enable = (if jsonData ? "nextcloud.enable" then jsonData.nextcloud.enable else false);
|
enable = (
|
||||||
adminPassword = (if jsonData ? "nextcloud.adminPassword" then jsonData.nextcloud.adminPassword else null);
|
if (jsonData ? "nextcloud" && jsonData.nextcloud ? "enable")
|
||||||
|
then jsonData.nextcloud.enable
|
||||||
|
else false
|
||||||
|
);
|
||||||
|
adminPassword = (
|
||||||
|
if (jsonData ? "nextcloud" && jsonData.nextcloud ? "adminPassword")
|
||||||
|
then jsonData.nextcloud.adminPassword
|
||||||
|
else null
|
||||||
|
);
|
||||||
};
|
};
|
||||||
pleroma = {
|
pleroma = {
|
||||||
enable = (if jsonData ? "pleroma.enable" then jsonData.pleroma.enable else false);
|
enable = (
|
||||||
|
if (jsonData ? "pleroma" && jsonData.pleroma ? "enable")
|
||||||
|
then jsonData.pleroma.enable
|
||||||
|
else false
|
||||||
|
);
|
||||||
};
|
};
|
||||||
jitsi = {
|
jitsi = {
|
||||||
enable = (if jsonData ? "jitsi.enable" then jsonData.jitsi.enable else false);
|
enable = (
|
||||||
|
if (jsonData ? "jitsi" && jsonData.jitsi ? "enable")
|
||||||
|
then jsonData.jitsi.enable
|
||||||
|
else false
|
||||||
|
);
|
||||||
};
|
};
|
||||||
ocserv = {
|
ocserv = {
|
||||||
enable = (if jsonData ? "ocserv.enable" then jsonData.ocserv.enable else false);
|
enable = (
|
||||||
|
if (jsonData ? "ocserv" && jsonData.ocserv ? "enable")
|
||||||
|
then jsonData.ocserv.enable
|
||||||
|
else false
|
||||||
|
);
|
||||||
};
|
};
|
||||||
resticPassword = (if jsonData ? "resticPassword" then jsonData.resticPassword else null);
|
resticPassword = (if jsonData ? "resticPassword" then jsonData.resticPassword else null);
|
||||||
ssh = {
|
ssh = {
|
||||||
enable = (if jsonData ? "ssh.enable" then jsonData.ssh.enable else true);
|
enable = (
|
||||||
rootKeys = (if jsonData ? "ssh.rootKeys" then jsonData.ssh.rootKeys else [ "" ]);
|
if (jsonData ? "ssh" && jsonData.ssh ? "enable")
|
||||||
passwordAuthentication = (if jsonData ? "ssh.passwordAuthentication" then jsonData.ssh.passwordAuthentication else true);
|
then jsonData.ssh.enable
|
||||||
|
else true
|
||||||
|
);
|
||||||
|
rootKeys = (
|
||||||
|
if (jsonData ? "ssh" && jsonData.ssh ? "rootKeys")
|
||||||
|
then jsonData.ssh.rootKeys
|
||||||
|
else [ "" ]
|
||||||
|
);
|
||||||
|
passwordAuthentication = (
|
||||||
|
if (jsonData ? "ssh" && jsonData.ssh ? "passwordAuthentication")
|
||||||
|
then jsonData.ssh.passwordAuthentication
|
||||||
|
else true
|
||||||
|
);
|
||||||
};
|
};
|
||||||
users = (if jsonData ? "users" then jsonData.users else [ ]);
|
users = (if jsonData ? "users" then jsonData.users else [ ]);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue