Files
nixos-config/configs/games.nix
Alexander Szczepanski 5cc84aea2f desktop-2024-09-29-12-25-24
2024-09-29 12:26:18 +02:00

48 lines
653 B
Nix
Executable File

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