nixos-config/features/desktopish/steam.nix
Sridhar Ratnakumar 8e14683bf0 cleanup
2021-11-20 12:14:29 -05:00

8 lines
194 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
steam
];
# https://github.com/NixOS/nixpkgs/issues/47932#issuecomment-447508411
hardware.opengl.driSupport32Bit = true;
}