nixos-config/system/app/steam.nix

8 lines
149 B
Nix
Raw Normal View History

2023-07-11 04:45:35 +05:30
{ config, pkgs, ... }:
{
hardware.opengl.driSupport32Bit = true;
programs.steam.enable = true;
2023-07-31 20:15:45 +05:30
environment.systemPackages = [ pkgs.steam ];
2023-07-11 04:45:35 +05:30
}