enable steam-run, gamescope

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-05-06 10:37:55 -04:00 committed by Alice Huston
parent 3cd1302140
commit 8885cae07e

View File

@ -6,11 +6,17 @@
}: }:
{ {
programs.steam = { environment.systemPackages = [ pkgs.steam-run ];
enable = true; hardware.steam-hardware.enable = true;
remotePlay.openFirewall = true; programs = {
localNetworkGameTransfers.openFirewall = true; gamescope.enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ]; steam = {
extest.enable = true; enable = true;
remotePlay.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
gamescopeSession.enable = true;
extest.enable = true;
};
}; };
} }