mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 11:16:11 +01:00
13 lines
302 B
Nix
13 lines
302 B
Nix
{ inputs, pkgs, ... }: {
|
|
programs.steam = {
|
|
enable = true;
|
|
extraCompatPackages = with pkgs; [
|
|
proton-ge-bin
|
|
];
|
|
gamescopeSession.enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
};
|
|
}
|