summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-02-26 09:50:01 -0500
committerGraham Christensen <graham@grahamc.com>2017-02-26 11:42:00 -0500
commit14305066667a59f8b809274182fe7ae120b099bf (patch)
tree8caf37b61692f5d70855dfc887ece8be3734a844 /nixos/modules/hardware
parent8b40d2e305e861c4f18a96af943fa927125b9537 (diff)
downloadnixlib-14305066667a59f8b809274182fe7ae120b099bf.tar
nixlib-14305066667a59f8b809274182fe7ae120b099bf.tar.gz
nixlib-14305066667a59f8b809274182fe7ae120b099bf.tar.bz2
nixlib-14305066667a59f8b809274182fe7ae120b099bf.tar.lz
nixlib-14305066667a59f8b809274182fe7ae120b099bf.tar.xz
nixlib-14305066667a59f8b809274182fe7ae120b099bf.tar.zst
nixlib-14305066667a59f8b809274182fe7ae120b099bf.zip
mcelog: init Machine Check Exception Logging Daemon service
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/mcelog.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixos/modules/hardware/mcelog.nix b/nixos/modules/hardware/mcelog.nix
new file mode 100644
index 000000000000..e4ac7d39053f
--- /dev/null
+++ b/nixos/modules/hardware/mcelog.nix
@@ -0,0 +1,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;
+      };
+    };
+  };
+
+}