summaryrefslogtreecommitdiff
path: root/hosts/common/hardware/nvidia.nix
blob: 4bc445c8babe63e56477f7f415d582eebceadc6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
	config,
	pkgs,
	...
}: {
	hardware = {
		nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
		opengl = {
			enable = true;
			extraPackages = with pkgs; [
				vaapiVdpau
			];
		};
	};

	services.xserver.videoDrivers = ["nvidia"];
}