core-services: use jre8 for keycloak, fixes LDAP federation

This commit is contained in:
Raito Bezarius 2021-11-21 11:53:30 +01:00
parent d8a577b078
commit f3f4431f2c

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ config, pkgs, ... }:
let
my = config.my;
port = 8080;
@ -6,6 +6,9 @@ in
{
services.keycloak = {
enable = true;
package = pkgs.keycloak.override {
jre = pkgs.jre8;
};
initialAdminPassword = "changemeasap";
database.createLocally = true;
database.passwordFile = config.age.secrets.keycloakDatabasePasswordFile.path;