8 lines
127 B
Nix
8 lines
127 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# Graphics drivers
|
||
|
hardware.bumblebee.enable = true;
|
||
|
hardware.opengl.driSupport32Bit = true;
|
||
|
}
|