nixos-dotfiles/modules/hardware/nvidia.nix

12 lines
270 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
{
nixpkgs.config.allowUnfree = true;
services.xserver.videoDrivers = [ "nvidia" ];
2023-02-01 03:19:31 +00:00
2023-02-18 21:11:34 +00:00
hardware.opengl.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
}