mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
38 lines
747 B
Nix
38 lines
747 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
meta.maintainers = [ maintainers.grahamc ];
|
|
options = {
|
|
|
|
hardware.mcelog = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Enable the Machine Check Exception logger.
|
|
'';
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf config.hardware.mcelog.enable {
|
|
systemd.services.mcelog = {
|
|
description = "Machine Check Exception Logging Daemon";
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.mcelog}/bin/mcelog --daemon --foreground";
|
|
SuccessExitStatus = [ 0 15 ];
|
|
|
|
ProtectHome = true;
|
|
PrivateNetwork = true;
|
|
PrivateTmp = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|