all repos — archive/nixos-configuration @ 18c8166b4feaae28e604cd2958e3696c49b77b69

Superseded by nixfiles

Add Steam module Move OpenGL 32-bit support here as it's not specific to Intel GPUs

Alan Pearce
commit

18c8166b4feaae28e604cd2958e3696c49b77b69

parent

186c927d0fc00b25629e2816ca78be05e56c2271

1 file changed, 8 insertions(+), 0 deletions(-)

changed files
A modules/programs/steam.nix
@@ -0,0 +1,8 @@
+{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs; [ + steam + ]; + hardware.opengl.driSupport32Bit = true; + hardware.pulseaudio.support32Bit = true; +}