12 lines
148 B
Nix
12 lines
148 B
Nix
{ config, lib, pkgs, ...}:
|
|
{
|
|
|
|
# Enable OpenGL
|
|
hardware.opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
|
|
}
|