mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-05-11 10:20:12 +02:00
feat: update nixpkgs, fix bug
This commit is contained in:
6
flake.lock
generated
6
flake.lock
generated
@@ -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": {
|
||||
|
||||
@@ -63,7 +63,7 @@ in
|
||||
winePackages = with pkgs-x64; [
|
||||
wineWow64Packages.full
|
||||
];
|
||||
extraPackages = with pkgs; [
|
||||
extraPackages = with pkgs-x64; [
|
||||
winetricks
|
||||
gamescope
|
||||
gamemode
|
||||
|
||||
@@ -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
6
overlays/openldap.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
_:
|
||||
(_: super: {
|
||||
openldap = super.openldap.overrideAttrs (old: {
|
||||
doCheck = false;
|
||||
});
|
||||
})
|
||||
Reference in New Issue
Block a user