nixpkgs/nixos/modules/programs/steam.nix

33 lines
875 B
Nix
Raw Normal View History

2020-05-01 14:50:28 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.steam;
2021-02-04 00:24:23 +00:00
steam = pkgs.steam.override {
extraLibraries = pkgs: with config.hardware.opengl;
if pkgs.hostPlatform.is64bit
then [ package ] ++ extraPackages
else [ package32 ] ++ extraPackages32;
};
2020-05-01 14:50:28 +00:00
in {
options.programs.steam.enable = mkEnableOption "steam";
config = mkIf cfg.enable {
hardware.opengl = { # this fixes the "glXChooseVisual failed" bug, context: https://github.com/NixOS/nixpkgs/issues/47932
enable = true;
driSupport32Bit = true;
};
# optionally enable 32bit pulseaudio support if pulseaudio is enabled
hardware.pulseaudio.support32Bit = config.hardware.pulseaudio.enable;
hardware.steam-hardware.enable = true;
environment.systemPackages = [ steam steam.run ];
2020-05-01 14:50:28 +00:00
};
meta.maintainers = with maintainers; [ mkg20001 ];
}