summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware/mcelog.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/hardware/mcelog.nix')
-rw-r--r--nixos/modules/hardware/mcelog.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/nixos/modules/hardware/mcelog.nix b/nixos/modules/hardware/mcelog.nix
index 13ad238870c2..38629c4ba945 100644
--- a/nixos/modules/hardware/mcelog.nix
+++ b/nixos/modules/hardware/mcelog.nix
@@ -1,14 +1,11 @@
{ config, lib, pkgs, ... }:
-
-with lib;
-
{
- meta.maintainers = with maintainers; [ grahamc ];
+ meta.maintainers = with lib.maintainers; [ grahamc ];
options = {
hardware.mcelog = {
- enable = mkOption {
- type = types.bool;
+ enable = lib.mkOption {
+ type = lib.types.bool;
default = false;
description = ''
Enable the Machine Check Exception logger.
@@ -18,7 +15,7 @@ with lib;
};
- config = mkIf config.hardware.mcelog.enable {
+ config = lib.mkIf config.hardware.mcelog.enable {
systemd = {
packages = [ pkgs.mcelog ];