about summary refs log tree commit diff
path: root/nixos/modules/hardware/mcelog.nix
blob: e4ac7d39053fdd16775b5ebd138586e834b18e2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ 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;
      };
    };
  };

}