mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-23 12:01:27 +00:00
One more if
This commit is contained in:
parent
7293337546
commit
b8bdb65e6d
|
@ -36,7 +36,7 @@ in
|
|||
};
|
||||
nextcloud = {
|
||||
enable = (if jsonData ? "nextcloud.enable" then jsonData.nextcloud.enable else false);
|
||||
adminPassword = (jsonData ? "nextcloud.adminPassword" then jsonData.nextcloud.adminPassword else null);
|
||||
adminPassword = (if jsonData ? "nextcloud.adminPassword" then jsonData.nextcloud.adminPassword else null);
|
||||
};
|
||||
pleroma = {
|
||||
enable = (if jsonData ? "pleroma.enable" then jsonData.pleroma.enable else false);
|
||||
|
|
Loading…
Reference in a new issue