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

6
flake.lock generated
View File

@@ -900,11 +900,11 @@
},
"nixpkgs_4": {
"locked": {
"lastModified": 1776255774,
"narHash": "sha256-psVTpH6PK3q1htMJpmdz1hLF5pQgEshu7gQWgKO6t6Y=",
"lastModified": 1777548390,
"narHash": "sha256-WacE23EbHTsBKvr8cu+1DFNbP6Rh1brHUH5SDUI0NQI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "566acc07c54dc807f91625bb286cb9b321b5f42a",
"rev": "7aaa00e7cc9be6c316cb5f6617bd740dd435c59d",
"type": "github"
},
"original": {

View File

@@ -63,7 +63,7 @@ in
winePackages = with pkgs-x64; [
wineWow64Packages.full
];
extraPackages = with pkgs; [
extraPackages = with pkgs-x64; [
winetricks
gamescope
gamemode

View File

@@ -49,6 +49,8 @@ let
# To use chrome, we need to allow the installation of non-free software
config.allowUnfree = true;
overlays = import ../overlays args;
};
};

6
overlays/openldap.nix Normal file
View File

@@ -0,0 +1,6 @@
_:
(_: super: {
openldap = super.openldap.overrideAttrs (old: {
doCheck = false;
});
})