1
0
Fork 0
mirror of https://github.com/tboerger/nixos-config synced 2024-06-08 19:36:03 +02:00
github.com-tboerger-nixos-c.../servers/asgard/hardware.nix

19 lines
302 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
hardware = {
enableAllFirmware = true;
enableRedistributableFirmware = true;
cpu = {
amd = {
updateMicrocode = lib.mkDefault true;
};
};
};
}