nixos/tests/kanidm: pin to v1.6

These should really be made versioned, but this gets us _something_
quickly, at least.

(cherry picked from commit bf0aa25e4b)
This commit is contained in:
K900 2025-05-19 11:14:40 +03:00 committed by github-actions[bot]
parent 494cad83b5
commit 217bc1016e
2 changed files with 3 additions and 1 deletions

View file

@ -23,7 +23,7 @@ import ./make-test-python.nix (
{ pkgs, lib, ... }:
{
services.kanidm = {
package = pkgs.kanidmWithSecretProvisioning;
package = pkgs.kanidmWithSecretProvisioning_1_6;
enableServer = true;
serverSettings = {
origin = "https://${serverDomain}";

View file

@ -26,6 +26,7 @@ import ./make-test-python.nix (
{ pkgs, ... }:
{
services.kanidm = {
package = pkgs.kanidm_1_6;
enableServer = true;
serverSettings = {
origin = "https://${serverDomain}";
@ -55,6 +56,7 @@ import ./make-test-python.nix (
{ nodes, ... }:
{
services.kanidm = {
package = pkgs.kanidm_1_6;
enableClient = true;
clientSettings = {
uri = "https://${serverDomain}";