mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
20 lines
294 B
Nix
20 lines
294 B
Nix
{
|
|
hardware = {
|
|
#OpenGL
|
|
graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
#Nvidia Drivers
|
|
nvidia = {
|
|
open = true;
|
|
modesetting = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
# Nvidia Drivers
|
|
services.xserver.videoDrivers = ["nvidia"];
|
|
}
|