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

36
flake.lock generated
View file

@ -182,11 +182,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1776964438, "lastModified": 1777308348,
"narHash": "sha256-AF0cby9Xuijr5qaFpYKbm1mExV956Hk233bel6QxpFw=", "narHash": "sha256-DJx9wnerjsOqKOo8I7/u5ENRhRWFF2mbYcACF+mn5LU=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "e09259dd2e147d35ef889784b51e89b0a10ffe15", "rev": "a28e848a01044f47679453aae75f6253bef7903e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -202,11 +202,11 @@
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1776915193, "lastModified": 1777001712,
"narHash": "sha256-bYyOT3OIWIKvDV+pOVd0hdCEG8orf85QX4b21LWUSEs=", "narHash": "sha256-9JX9msZU1NvHzjKM24PRorP76Ge8GBy6LAkJKA21mlY=",
"owner": "Infinidoge", "owner": "Infinidoge",
"repo": "nix-minecraft", "repo": "nix-minecraft",
"rev": "40c972ce0f45b8c05bf245d5065647b17552312c", "rev": "394d3bfd943458baf29e4798bc9b256d824a3bb9",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -233,11 +233,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1776548001, "lastModified": 1776877367,
"narHash": "sha256-ZSK0NL4a1BwVbbTBoSnWgbJy9HeZFXLYQizjb2DPF24=", "narHash": "sha256-EHq1/OX139R1RvBzOJ0aMRT3xnWyqtHBRUBuO1gFzjI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b12141ef619e0a9c1c84dc8c684040326f27cdcc", "rev": "0726a0ecb6d4e08f6adced58726b95db924cef57",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -257,11 +257,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1776888984, "lastModified": 1777253304,
"narHash": "sha256-Up2F/eoMuPUsZnPVYdH5TMHe1TBP2Ue1QuWd0vWZoxY=", "narHash": "sha256-XqSHEKEW5pSAx9MoMo8mKPgkjoy4FEhZ4x0a6hGYrSI=",
"owner": "noctalia-dev", "owner": "noctalia-dev",
"repo": "noctalia-shell", "repo": "noctalia-shell",
"rev": "2c1808f9f8937fc0b82c54af513f7620fec56d71", "rev": "6773c4750a12c9e9af9c4ce2365e083f1d0d0ad8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -279,11 +279,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1776585574, "lastModified": 1777167795,
"narHash": "sha256-j35EWhKoGhKrfcXcAOpoRVgXEPQt41Eukji/h59cnjk=", "narHash": "sha256-VHdtmxVX7oF2+FxYQQPARQmtaHw23FoTBiTaH6ucOEg=",
"owner": "noctalia-dev", "owner": "noctalia-dev",
"repo": "noctalia-qs", "repo": "noctalia-qs",
"rev": "75d180c28a9ab4470e980f3d6f706ad6c5213add", "rev": "697db4c14e27d841956ff76887fc312443e6fb17",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -300,11 +300,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1776968562, "lastModified": 1777310681,
"narHash": "sha256-SPXspD2GBfc3M4FPpQ4WHoNkA7v3i16haq4ee3byPaU=", "narHash": "sha256-aH8jCEMx+Yu5DlK57WosQuQ0N5Mjw9Adi4lWxetb3Hk=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "f2234521c9e8efd38006a28cbcd7d982ab20e328", "rev": "4f4c34c2045792976d5d41f6176f476662b109b5",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -40,11 +40,22 @@
in in
if fromEnv != "" then fromEnv else "/home/alisceon/.nixos_config"; 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 { pkgs = import nixpkgs {
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
flake.setFlakeRegistry = true; flake.setFlakeRegistry = true;
overlays = [ inputs.nur.overlays.default ]; inherit overlays;
}; };
sharedSpecialArgs = { sharedSpecialArgs = {