mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-04 04:23:12 +01:00
17 lines
365 B
Nix
17 lines
365 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.bumblebee pkgs.glxinfo ];
|
|
};
|
|
};
|
|
};
|
|
}
|