nichts/modules/system/hardware/cpu/intel.nix

18 lines
339 B
Nix
Raw Normal View History

2024-08-20 21:27:00 +02:00
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkDefault mkIf;
inherit (config.modules.system.video) nvidia amd;
in {
hardware = {
cpu.intel.updateMicrocode = mkDefault config.hardware.enableRedistributableFirmware;
2024-09-30 21:50:19 +02:00
graphics.extraPackages = with pkgs; [
2024-08-20 21:27:00 +02:00
intel-vaapi-driver
intel-media-driver
];
};
}