1 { config, lib, pkgs, ... }:
6 meta.maintainers = with maintainers; [ grahamc ];
13 description = lib.mdDoc ''
14 Enable the Machine Check Exception logger.
21 config = mkIf config.hardware.mcelog.enable {
23 packages = [ pkgs.mcelog ];
26 wantedBy = [ "multi-user.target" ];
29 PrivateNetwork = true;