nixos-configs/configs/games.nix

21 lines
513 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
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
2020-03-09 18:22:24 +01:00
dolphinEmu
];
};
}