mirror of
https://github.com/NixOS/nixos-hardware
synced 2025-02-05 15:45:05 +01:00
8 lines
154 B
Nix
8 lines
154 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ];
|
|
hardware.opengl.extraPackages = with pkgs; [
|
|
vaapiVdpau
|
|
];
|
|
}
|