8 lines
139 B
Nix
8 lines
139 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Graphics drivers
|
|
services.xserver.videoDrivers = [ "nvidia" ];
|
|
hardware.opengl.driSupport32Bit = true;
|
|
}
|