summary refs log tree commit diff stats
path: root/modules/hardware/nvidia-gpu.nix
blob: 2c49e964ea995e36c65fdfaeeac81698a6fda993 (plain)
1
2
3
4
5
6
{ config, pkgs, ... }:

{ services.xserver.videoDrivers = [ "nvidia" ];
  hardware.opengl.driSupport32Bit = true;
  nixpkgs.config.allowUnfree = true;
}