migrate gaming

This commit is contained in:
Dennis Schoepf 2026-03-03 22:41:31 +01:00
parent 95fd98e0ae
commit fc2234ae21
2 changed files with 22 additions and 1 deletions

View file

@ -4,5 +4,25 @@
{ pkgs, ... }:
{
programs.gamemode.enable = true;
programs.gamescope.enable = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
protontricks.enable = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
];
extraPackages = with pkgs; [
gamescope
];
};
environment.systemPackages = with pkgs; [
lutris
steam-run
gamescope
mangohud
];
};
}