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

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