feat: update nixpkgs, fix bug

This commit is contained in:
Ryan Yin
2026-05-03 13:04:01 +08:00
parent 93c7507874
commit 762896ddb9
4 changed files with 12 additions and 4 deletions
Generated
+3 -3
View File
@@ -900,11 +900,11 @@
}, },
"nixpkgs_4": { "nixpkgs_4": {
"locked": { "locked": {
"lastModified": 1776255774, "lastModified": 1777548390,
"narHash": "sha256-psVTpH6PK3q1htMJpmdz1hLF5pQgEshu7gQWgKO6t6Y=", "narHash": "sha256-WacE23EbHTsBKvr8cu+1DFNbP6Rh1brHUH5SDUI0NQI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "566acc07c54dc807f91625bb286cb9b321b5f42a", "rev": "7aaa00e7cc9be6c316cb5f6617bd740dd435c59d",
"type": "github" "type": "github"
}, },
"original": { "original": {
+1 -1
View File
@@ -63,7 +63,7 @@ in
winePackages = with pkgs-x64; [ winePackages = with pkgs-x64; [
wineWow64Packages.full wineWow64Packages.full
]; ];
extraPackages = with pkgs; [ extraPackages = with pkgs-x64; [
winetricks winetricks
gamescope gamescope
gamemode gamemode
+2
View File
@@ -49,6 +49,8 @@ let
# To use chrome, we need to allow the installation of non-free software # To use chrome, we need to allow the installation of non-free software
config.allowUnfree = true; config.allowUnfree = true;
overlays = import ../overlays args;
}; };
}; };
+6
View File
@@ -0,0 +1,6 @@
_:
(_: super: {
openldap = super.openldap.overrideAttrs (old: {
doCheck = false;
});
})