nixos-config/modules/system/devices/video/default.nix
2025-02-27 11:42:57 -05:00

17 lines
355 B
Nix

{ config, pkgs, ... }:
{
imports = [
./nvidia
./nouveau
];
hardware.graphics = {
enable = config.system.desktop.enable;
enable32Bit = if config.nixpkgs.hostPlatform == "x86_64-linux" then true else false;
extraPackages = with pkgs; [
vulkan-loader
vulkan-validation-layers
vulkan-extension-layer
];
};
}