nixos-config/profiles/opengl.nix

7 lines
190 B
Nix
Raw Normal View History

2021-11-23 12:33:00 +04:00
{ pkgs, ... }: {
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true; # For steam
2022-10-10 17:28:36 +04:00
hardware.opengl.package = pkgs.mesa.drivers;
2021-11-23 12:33:00 +04:00
}