nixos-config/system/app/steam.nix

8 lines
141 B
Nix
Raw Permalink Normal View History

{ pkgs, ... }:
2023-07-11 04:45:35 +05:30
{
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
}