nixfiles/nixos/profiles/gaming/steam.nix
2025-06-27 15:07:29 -07:00

9 lines
184 B
Nix

{ pkgs, inputs, ... }: {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
platformOptimizations.enable = true;
extraCompatPackages = [
];
};
}