NixOS-Config/modules/system/devices/video/default.nix

15 lines
272 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
imports = [ ./nvidia ];
2024-08-24 22:16:51 -04:00
hardware.opengl = {
enable = config.system.desktop.enable;
2024-08-24 22:16:51 -04:00
driSupport32Bit = true;
extraPackages = with pkgs; [
vulkan-loader
vulkan-validation-layers
vulkan-extension-layer
];
};
}