core-services: use jre8 for keycloak, fixes LDAP federation
This commit is contained in:
parent
d8a577b078
commit
f3f4431f2c
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue