Jafner.net/nix/nixos/steam.nix

9 lines
179 B
Nix
Raw Normal View History

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