flake/nixos/hardware/misc/opengl.nix

12 lines
141 B
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{ ... }:
# OpenGL
{
hardware = {
opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
};
}