12 lines
141 B
Nix
12 lines
141 B
Nix
|
{ ... }:
|
||
|
|
||
|
# OpenGL
|
||
|
{
|
||
|
hardware = {
|
||
|
opengl = {
|
||
|
enable = true;
|
||
|
driSupport = true;
|
||
|
driSupport32Bit = true;
|
||
|
};
|
||
|
};
|
||
|
}
|