2020-05-01 14:50:28 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.steam;
|
|
|
|
in {
|
2021-02-19 19:06:01 +00:00
|
|
|
options.programs.steam = {
|
2022-08-28 19:18:44 +00:00
|
|
|
enable = mkEnableOption (lib.mdDoc "steam");
|
2021-02-19 19:06:01 +00:00
|
|
|
|
2022-10-19 15:05:13 +00:00
|
|
|
package = mkOption {
|
2023-03-07 19:24:28 +00:00
|
|
|
type = types.package;
|
|
|
|
default = pkgs.steam;
|
|
|
|
defaultText = literalExpression "pkgs.steam";
|
|
|
|
example = literalExpression ''
|
|
|
|
pkgs.steam-small.override {
|
2023-01-29 13:56:57 +00:00
|
|
|
extraEnv = {
|
|
|
|
MANGOHUD = true;
|
|
|
|
OBS_VKCAPTURE = true;
|
|
|
|
RADV_TEX_ANISO = 16;
|
|
|
|
};
|
|
|
|
extraLibraries = p: with p; [
|
2023-03-07 19:24:28 +00:00
|
|
|
atk
|
|
|
|
];
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
apply = steam: steam.override (prev: {
|
|
|
|
extraLibraries = pkgs: let
|
|
|
|
prevLibs = if prev ? extraLibraries then prev.extraLibraries pkgs else [ ];
|
|
|
|
additionalLibs = with config.hardware.opengl;
|
2023-01-09 03:36:01 +00:00
|
|
|
if pkgs.stdenv.hostPlatform.is64bit
|
2022-10-19 15:05:13 +00:00
|
|
|
then [ package ] ++ extraPackages
|
|
|
|
else [ package32 ] ++ extraPackages32;
|
2023-03-07 19:24:28 +00:00
|
|
|
in prevLibs ++ additionalLibs;
|
|
|
|
});
|
2022-10-19 15:05:13 +00:00
|
|
|
description = lib.mdDoc ''
|
2023-03-07 19:24:28 +00:00
|
|
|
The Steam package to use. Additional libraries are added from the system
|
|
|
|
configuration to ensure graphics work properly.
|
|
|
|
|
|
|
|
Use this option to customise the Steam package rather than adding your
|
|
|
|
custom Steam to {option}`environment.systemPackages` yourself.
|
2022-10-19 15:05:13 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2021-02-19 19:06:01 +00:00
|
|
|
remotePlay.openFirewall = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc ''
|
2021-02-19 19:06:01 +00:00
|
|
|
Open ports in the firewall for Steam Remote Play.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
dedicatedServer.openFirewall = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2022-07-28 21:19:15 +00:00
|
|
|
description = lib.mdDoc ''
|
2021-02-19 19:06:01 +00:00
|
|
|
Open ports in the firewall for Source Dedicated Server.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2020-05-01 14:50:28 +00:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
hardware.opengl = { # this fixes the "glXChooseVisual failed" bug, context: https://github.com/NixOS/nixpkgs/issues/47932
|
|
|
|
enable = true;
|
2021-03-02 19:17:53 +00:00
|
|
|
driSupport = true;
|
2020-05-01 14:50:28 +00:00
|
|
|
driSupport32Bit = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# optionally enable 32bit pulseaudio support if pulseaudio is enabled
|
|
|
|
hardware.pulseaudio.support32Bit = config.hardware.pulseaudio.enable;
|
|
|
|
|
|
|
|
hardware.steam-hardware.enable = true;
|
|
|
|
|
2022-10-19 15:05:13 +00:00
|
|
|
environment.systemPackages = [
|
|
|
|
cfg.package
|
|
|
|
cfg.package.run
|
|
|
|
];
|
2021-02-19 19:06:01 +00:00
|
|
|
|
|
|
|
networking.firewall = lib.mkMerge [
|
|
|
|
(mkIf cfg.remotePlay.openFirewall {
|
|
|
|
allowedTCPPorts = [ 27036 ];
|
|
|
|
allowedUDPPortRanges = [ { from = 27031; to = 27036; } ];
|
|
|
|
})
|
|
|
|
|
|
|
|
(mkIf cfg.dedicatedServer.openFirewall {
|
|
|
|
allowedTCPPorts = [ 27015 ]; # SRCDS Rcon port
|
|
|
|
allowedUDPPorts = [ 27015 ]; # Gameplay traffic
|
|
|
|
})
|
|
|
|
];
|
2020-05-01 14:50:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta.maintainers = with maintainers; [ mkg20001 ];
|
|
|
|
}
|