Jafner.net/nix/nixos/steam.nix

8 lines
141 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
hardware.opengl.driSupport32Bit = true;
programs.steam.enable = true;
environment.systemPackages = [ pkgs.steam ];
}