From 147d81d15594cd73f3ad38ae36dae09c1004292f Mon Sep 17 00:00:00 2001 From: Morgan Helton Date: Mon, 4 Sep 2023 20:09:25 -0500 Subject: [PATCH] nixos/atuin: fix enable option typo --- nixos/modules/services/misc/atuin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/atuin.nix b/nixos/modules/services/misc/atuin.nix index 57ff02df7d68..8d2c1b5242ff 100644 --- a/nixos/modules/services/misc/atuin.nix +++ b/nixos/modules/services/misc/atuin.nix @@ -6,7 +6,7 @@ in { options = { services.atuin = { - enable = lib.mkEnableOption (mdDoc "Enable server for shell history sync with atuin"); + enable = lib.mkEnableOption (mdDoc "Atuin server for shell history sync"); openRegistration = mkOption { type = types.bool;