mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-05-19 06:07:24 +02:00
feat: update nixpkgs, fix bug
This commit is contained in:
Generated
+3
-3
@@ -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": {
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
_:
|
||||||
|
(_: super: {
|
||||||
|
openldap = super.openldap.overrideAttrs (old: {
|
||||||
|
doCheck = false;
|
||||||
|
});
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user