Files
nix-config/hosts/modules/gaming.nix
2024-12-10 23:39:09 +01:00

29 lines
510 B
Nix
Executable File

{ pkgs, username, ... }:
{
users.users.${username}.packages = with pkgs; [ heroic ];
hardware.steam-hardware.enable = true;
programs = {
steam = {
enable = true;
gamescopeSession.enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
gamemode = {
enable = true;
enableRenice = true;
settings = { };
};
gamescope = {
enable = true;
args = [
"-w 2560 -h 1440"
"-F nis"
"f"
];
};
};
}