flake/machines/nixos/hardware/misc/opengl.nix

12 lines
138 B
Nix
Raw Normal View History

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