1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 05:17:22 +02:00
nixos-hardware/common/gpu/nvidia/default.nix

10 lines
193 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
{
2024-06-21 23:26:44 +02:00
imports = [ ../24.05-compat.nix ];
services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ];
2024-06-21 15:44:42 +02:00
hardware.graphics.extraPackages = with pkgs; [
vaapiVdpau
];
}