12 lines
158 B
Nix
12 lines
158 B
Nix
|
|
{ config, lib, inputs, pkgs, ... }:
|
|
|
|
{
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
|
|
services.xserver.videoDrivers = ["nvidia"];
|
|
}
|