mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-23 07:03: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;
|
|
};
|
|
}
|