Files
Enzime 6cbf86f121
buildbot/nix-eval Build done.
kanidm: 1.7 -> 1.8
2025-12-03 11:07:47 +11:00

31 lines
644 B
Nix

{ self, ... }:
{
perSystem =
{
config,
inputs',
pkgs,
...
}:
{
devShells.default = pkgs.mkShellNoCC {
packages = [
pkgs.bash
pkgs.sops
pkgs.nixVersions.latest
inputs'.clan-core.packages.tea-create-pr
inputs'.clan-core.packages.merge-after-ci
inputs'.clan-core.packages.clan-cli
# treefmt with config defined in ./flake.nix
config.treefmt.build.wrapper
self.nixosConfigurations.web02.config.services.kanidm.package
];
env.KANIDM_URL = "https://idm.thecomputer.co";
};
};
}