nixos-config/system/programs/steam.nix
xunuwu a18ceb4f2e
switch to programs.steam and proton-ge-bin from nixpkgs
proton-ge from nix-gaming is deprecated now that proton-ge-bin is in
nixpkgs
2024-03-19 18:21:09 +01:00

12 lines
277 B
Nix

{pkgs, ...}: {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
];
extest.enable = true;
gamescopeSession.enable = true;
};
}