1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-22 18:21:58 +01:00
github.com-tboerger-nixos-c.../servers/vanaheim/hardware.nix

19 lines
304 B
Nix
Raw Normal View History

2022-11-14 21:19:34 +01:00
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [
2022-11-17 12:00:18 +01:00
(modulesPath + "/installer/scan/not-detected.nix")
2022-11-14 21:19:34 +01:00
];
hardware = {
enableAllFirmware = true;
enableRedistributableFirmware = true;
cpu = {
intel = {
updateMicrocode = lib.mkDefault true;
};
};
};
}