summary refs log tree commit diff stats
path: root/modules/programs/steam.nix
blob: d4bad7a0ed98d754eff70495c54d476b9bcf7a61 (plain)
1
2
3
4
5
6
7
8
{ config, pkgs, ... }:

{ environment.systemPackages = with pkgs; [
    steam
  ];
  hardware.opengl.driSupport32Bit = true;
  hardware.pulseaudio.support32Bit = true;
}