9 lines
130 B
Nix
9 lines
130 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
environment.systemPackages = with pkgs; [
|
|
i7z
|
|
];
|
|
}
|