mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-01-14 16:38:13 +01:00
16 lines
365 B
Nix
16 lines
365 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
lib.mkIf ("${deviceProfile}" == "intel-laptop") {
|
|
# Steam Configuration
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
package = pkgs.steam.override {
|
|
withPrimus = true;
|
|
withJava = true;
|
|
extraPkgs = pkgs: [ bumblebee glxinfo ];
|
|
};
|
|
};
|
|
}
|