Files
nixos-config/configs/games.nix
Alexander Szczepanski 7f21ad2dc1 desktop-2024-10-18-08-01-32
2024-10-18 08:01:32 +02:00

48 lines
663 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_git
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_git
];
}