mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 11:33:07 +01:00
11 lines
141 B
Nix
11 lines
141 B
Nix
|
{ pkgs, config, lib, ... }:
|
||
|
|
||
|
{
|
||
|
# OpenGL
|
||
|
hardware.opengl = {
|
||
|
enable = true;
|
||
|
driSupport = true;
|
||
|
driSupport32Bit = true;
|
||
|
};
|
||
|
}
|