Fixing all warnings

This commit is contained in:
Lyes Saadi 2026-03-06 20:34:14 +01:00
parent 32720ae712
commit 169912a47b
Signed by: lyes
GPG key ID: 55A1D803917CF39A
15 changed files with 124 additions and 92 deletions

View file

@ -2,12 +2,13 @@
{
services.kanidm = {
package = pkgs.kanidmWithSecretProvisioning_1_8;
package = pkgs.kanidmWithSecretProvisioning_1_9;
enableClient = true;
clientSettings = {
uri = "https://auth.lyes.eu";
client = {
enable = true;
settings = {
uri = "https://auth.lyes.eu";
};
};
};
}

View file

@ -13,19 +13,21 @@ in
services.kanidm = {
# package = pkgs.kanidmWithSecretProvisioning_1_7;
enableServer = true;
serverSettings = {
bindaddress = "127.0.0.1:${port}";
ldapbindaddress = "0.0.0.0:636";
domain = hostname;
origin = "https://${hostname}";
tls_chain = "/var/lib/acme/${hostname}/cert.pem";
tls_key = "/var/lib/acme/${hostname}/key.pem";
server = {
enable = true;
settings = {
bindaddress = "127.0.0.1:${port}";
ldapbindaddress = "0.0.0.0:636";
domain = hostname;
origin = "https://${hostname}";
tls_chain = "/var/lib/acme/${hostname}/cert.pem";
tls_key = "/var/lib/acme/${hostname}/key.pem";
online_backup = {
path = "/var/data/backups/kanidm";
schedule = "00 06 * * *";
versions = 5;
online_backup = {
path = "/var/data/backups/kanidm";
schedule = "00 06 * * *";
versions = 5;
};
};
};