bump and version workaround

This commit is contained in:
alisceon 2026-04-27 20:13:09 +02:00
parent 6767c53970
commit cd70ade48c
2 changed files with 30 additions and 19 deletions

View file

@ -40,11 +40,22 @@
in
if fromEnv != "" then fromEnv else "/home/alisceon/.nixos_config";
overlays = [
inputs.nur.overlays.default
(_final: prev: {
# openldap 2.6.13 currently flakes in its test suite when bottles pulls
# in the i686 variant for its multi-arch FHS environment.
openldap = prev.openldap.overrideAttrs (old: {
doCheck = if old.version == "2.6.13" then false else old.doCheck;
});
})
];
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
flake.setFlakeRegistry = true;
overlays = [ inputs.nur.overlays.default ];
inherit overlays;
};
sharedSpecialArgs = {