Add patch to fix Lutris with recent gtk3 version

This commit is contained in:
Paul-Henri Froidmont 2020-03-08 20:55:29 +01:00
parent 35d1888bbd
commit 0c54d0d7e7
2 changed files with 36 additions and 0 deletions

View file

@ -2,6 +2,16 @@
{
hardware.opengl.driSupport32Bit = true;
home-manager.users.froidmpa = {pkgs, config, ...}: {
nixpkgs.config = {
allowUnfree = true;
packageOverrides = super: let self = super.pkgs; in {
lutris-unwrapped = super.lutris-unwrapped.overridePythonAttrs (oldAttrs: rec {
patches = [
./lutris_sort_new_with_model_fix.patch
];
});
};
};
home.packages = with pkgs; [
steam
lutris