Jafner.net/nix/nixos/steam.nix
2024-10-16 21:39:35 -07:00

9 lines
202 B
Nix

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