From cd70ade48c48003e94902c5564e2578372731652 Mon Sep 17 00:00:00 2001 From: alisceon Date: Mon, 27 Apr 2026 20:13:09 +0200 Subject: [PATCH] bump and version workaround --- flake.lock | 36 ++++++++++++++++++------------------ flake.nix | 13 ++++++++++++- 2 files changed, 30 insertions(+), 19 deletions(-) diff --git a/flake.lock b/flake.lock index 416555c..d026be3 100644 --- a/flake.lock +++ b/flake.lock @@ -182,11 +182,11 @@ ] }, "locked": { - "lastModified": 1776964438, - "narHash": "sha256-AF0cby9Xuijr5qaFpYKbm1mExV956Hk233bel6QxpFw=", + "lastModified": 1777308348, + "narHash": "sha256-DJx9wnerjsOqKOo8I7/u5ENRhRWFF2mbYcACF+mn5LU=", "owner": "nix-community", "repo": "home-manager", - "rev": "e09259dd2e147d35ef889784b51e89b0a10ffe15", + "rev": "a28e848a01044f47679453aae75f6253bef7903e", "type": "github" }, "original": { @@ -202,11 +202,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1776915193, - "narHash": "sha256-bYyOT3OIWIKvDV+pOVd0hdCEG8orf85QX4b21LWUSEs=", + "lastModified": 1777001712, + "narHash": "sha256-9JX9msZU1NvHzjKM24PRorP76Ge8GBy6LAkJKA21mlY=", "owner": "Infinidoge", "repo": "nix-minecraft", - "rev": "40c972ce0f45b8c05bf245d5065647b17552312c", + "rev": "394d3bfd943458baf29e4798bc9b256d824a3bb9", "type": "github" }, "original": { @@ -233,11 +233,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1776548001, - "narHash": "sha256-ZSK0NL4a1BwVbbTBoSnWgbJy9HeZFXLYQizjb2DPF24=", + "lastModified": 1776877367, + "narHash": "sha256-EHq1/OX139R1RvBzOJ0aMRT3xnWyqtHBRUBuO1gFzjI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "b12141ef619e0a9c1c84dc8c684040326f27cdcc", + "rev": "0726a0ecb6d4e08f6adced58726b95db924cef57", "type": "github" }, "original": { @@ -257,11 +257,11 @@ ] }, "locked": { - "lastModified": 1776888984, - "narHash": "sha256-Up2F/eoMuPUsZnPVYdH5TMHe1TBP2Ue1QuWd0vWZoxY=", + "lastModified": 1777253304, + "narHash": "sha256-XqSHEKEW5pSAx9MoMo8mKPgkjoy4FEhZ4x0a6hGYrSI=", "owner": "noctalia-dev", "repo": "noctalia-shell", - "rev": "2c1808f9f8937fc0b82c54af513f7620fec56d71", + "rev": "6773c4750a12c9e9af9c4ce2365e083f1d0d0ad8", "type": "github" }, "original": { @@ -279,11 +279,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1776585574, - "narHash": "sha256-j35EWhKoGhKrfcXcAOpoRVgXEPQt41Eukji/h59cnjk=", + "lastModified": 1777167795, + "narHash": "sha256-VHdtmxVX7oF2+FxYQQPARQmtaHw23FoTBiTaH6ucOEg=", "owner": "noctalia-dev", "repo": "noctalia-qs", - "rev": "75d180c28a9ab4470e980f3d6f706ad6c5213add", + "rev": "697db4c14e27d841956ff76887fc312443e6fb17", "type": "github" }, "original": { @@ -300,11 +300,11 @@ ] }, "locked": { - "lastModified": 1776968562, - "narHash": "sha256-SPXspD2GBfc3M4FPpQ4WHoNkA7v3i16haq4ee3byPaU=", + "lastModified": 1777310681, + "narHash": "sha256-aH8jCEMx+Yu5DlK57WosQuQ0N5Mjw9Adi4lWxetb3Hk=", "owner": "nix-community", "repo": "NUR", - "rev": "f2234521c9e8efd38006a28cbcd7d982ab20e328", + "rev": "4f4c34c2045792976d5d41f6176f476662b109b5", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index c6fbf49..c634fe3 100644 --- a/flake.nix +++ b/flake.nix @@ -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 = {