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
2 files changed, 8 insertions(+), 1 deletions(-)
M modules/hardware/nvidia-gpu.nix → modules/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; +}