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

18 lines
290 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
2024-11-19 13:20:34 -05:00
imports = [
./nvidia
./nouveau
];
2024-11-19 13:20:34 -05:00
hardware.graphics = {
enable = config.system.desktop.enable;
2024-11-19 13:20:34 -05:00
enable32Bit = true;
2024-08-24 22:16:51 -04:00
extraPackages = with pkgs; [
vulkan-loader
vulkan-validation-layers
vulkan-extension-layer
];
};
}