zaneyos/config/system/steam.nix
2024-01-23 17:43:03 -06:00

17 lines
369 B
Nix

{ pkgs, config, lib, cpuType, ... }:
{
# Steam Configuration
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
package = lib.mkIf ("${cpuType}" == "intel") {
pkgs.steam.override {
withPrimus = true;
extraPkgs = pkgs: [ pkgs.bumblebee pkgs.glxinfo ];
};
};
};
}