NixOS-Config/modules/system/devices/video/default.nix
2024-11-19 13:20:34 -05:00

18 lines
290 B
Nix

{ config, pkgs, ... }:
{
imports = [
./nvidia
./nouveau
];
hardware.graphics = {
enable = config.system.desktop.enable;
enable32Bit = true;
extraPackages = with pkgs; [
vulkan-loader
vulkan-validation-layers
vulkan-extension-layer
];
};
}