nixos-config/modules/system/devices/video/default.nix
2025-03-01 16:54:54 -05:00

17 lines
359 B
Nix

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