all repos — nixfiles @ 18c8166b4feaae28e604cd2958e3696c49b77b69

System and user configuration, managed by nix and home-manager

Add Steam module

Move OpenGL 32-bit support here as it's not specific to Intel GPUs
Alan Pearce alan@alanpearce.eu
Tue, 12 Dec 2017 15:45:27 +0100
commit

18c8166b4feaae28e604cd2958e3696c49b77b69

parent

186c927d0fc00b25629e2816ca78be05e56c2271

2 files changed, 8 insertions(+), 1 deletions(-)

jump to
M modules/hardware/nvidia-gpu.nixmodules/hardware/nvidia-gpu.nix
@@ -1,6 +1,5 @@ { config, pkgs, ... }:
 
 { services.xserver.videoDrivers = [ "nvidia" ];
-  hardware.opengl.driSupport32Bit = true;
   nixpkgs.config.allowUnfree = true;
 }
A modules/programs/steam.nix
@@ -0,0 +1,8 @@+{ config, pkgs, ... }:
+
+{ environment.systemPackages = with pkgs; [
+    steam
+  ];
+  hardware.opengl.driSupport32Bit = true;
+  hardware.pulseaudio.support32Bit = true;
+}