Files
nixos-config/configs/games.nix
Alexander Szczepanski 95eaa7840f desktop-2024-09-16-22-47-01
2024-09-16 22:47:01 +02:00

57 lines
886 B
Nix
Executable File

{ config, pkgs, lib, outputs, ... }:
{
services.flatpak.enable = true;
programs = {
gamescope = {
enable = true;
capSysNice = false;
package = pkgs.gamescope;
};
gamemode = {
enable = true;
enableRenice = true;
};
steam = {
enable = true;
# package = pkgs.unstable.steam;
extraPackages = with pkgs; [
gamescope
mangohud
libkrb5
keyutils
];
# extraCompatPackages = with pkgs; [
# proton-ge-custom
# ];
};
};
environment.systemPackages = with pkgs.unstable; [
# (lutris.override {
# extraPkgs = pkgs: [
# pkgs.gamescope
# pkgs.mangohud
# ];
# })
lutris
heroic
protontricks
protonup-qt
vulkan-tools
gamemode
wine
winetricks
# proton-ge-bin
pcsx2
mangohud
];
}