nixos-configs/configs/games.nix
2020-05-19 23:29:29 +02:00

20 lines
513 B
Nix

{ 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
dolphinEmu
];
};
}