mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-23 12:01:27 +00:00
Forgot some ifs
This commit is contained in:
parent
31c0d4a5d5
commit
7293337546
|
@ -29,25 +29,25 @@ in
|
||||||
};
|
};
|
||||||
databasePassword = (if jsonData ? "databasePassword" then jsonData.databasePassword else null);
|
databasePassword = (if jsonData ? "databasePassword" then jsonData.databasePassword else null);
|
||||||
bitwarden = {
|
bitwarden = {
|
||||||
enable = (jsonData ? "bitwarden.enable" then jsonData.bitwarden.enable else false);
|
enable = (if jsonData ? "bitwarden.enable" then jsonData.bitwarden.enable else false);
|
||||||
};
|
};
|
||||||
gitea = {
|
gitea = {
|
||||||
enable = (jsonData ? "gitea.enable" then jsonData.gitea.enable else false);
|
enable = (if jsonData ? "gitea.enable" then jsonData.gitea.enable else false);
|
||||||
};
|
};
|
||||||
nextcloud = {
|
nextcloud = {
|
||||||
enable = (jsonData ? "nextcloud.enable" then jsonData.nextcloud.enable else false);
|
enable = (if jsonData ? "nextcloud.enable" then jsonData.nextcloud.enable else false);
|
||||||
adminPassword = (jsonData ? "nextcloud.adminPassword" then jsonData.nextcloud.adminPassword else null);
|
adminPassword = (jsonData ? "nextcloud.adminPassword" then jsonData.nextcloud.adminPassword else null);
|
||||||
};
|
};
|
||||||
pleroma = {
|
pleroma = {
|
||||||
enable = (jsonData ? "pleroma.enable" then jsonData.pleroma.enable else false);
|
enable = (if jsonData ? "pleroma.enable" then jsonData.pleroma.enable else false);
|
||||||
};
|
};
|
||||||
jitsi = {
|
jitsi = {
|
||||||
enable = (jsonData ? "jitsi.enable" then jsonData.jitsi.enable else false);
|
enable = (if jsonData ? "jitsi.enable" then jsonData.jitsi.enable else false);
|
||||||
};
|
};
|
||||||
ocserv = {
|
ocserv = {
|
||||||
enable = (jsonData ? "ocserv.enable" then jsonData.ocserv.enable else false);
|
enable = (if jsonData ? "ocserv.enable" then jsonData.ocserv.enable else false);
|
||||||
};
|
};
|
||||||
resticPassword = (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 = (if jsonData ? "ssh.enable" then jsonData.ssh.enable else true);
|
||||||
rootKeys = (if jsonData ? "ssh.rootKeys" then jsonData.ssh.rootKeys else [ ]);
|
rootKeys = (if jsonData ? "ssh.rootKeys" then jsonData.ssh.rootKeys else [ ]);
|
||||||
|
|
Loading…
Reference in a new issue