about summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorMorgan Helton <mhelton@gmail.com>2023-09-04 20:09:25 -0500
committerBjørn Forsman <bjorn.forsman@gmail.com>2023-09-05 08:34:34 +0200
commit147d81d15594cd73f3ad38ae36dae09c1004292f (patch)
tree8e65cedf18b8fdee9d0e369440ea65d2ebac325c /nixos/modules/services
parent5aedc3524eaf85aa303d4254b44426e7ed17f1fe (diff)
downloadnixlib-147d81d15594cd73f3ad38ae36dae09c1004292f.tar
nixlib-147d81d15594cd73f3ad38ae36dae09c1004292f.tar.gz
nixlib-147d81d15594cd73f3ad38ae36dae09c1004292f.tar.bz2
nixlib-147d81d15594cd73f3ad38ae36dae09c1004292f.tar.lz
nixlib-147d81d15594cd73f3ad38ae36dae09c1004292f.tar.xz
nixlib-147d81d15594cd73f3ad38ae36dae09c1004292f.tar.zst
nixlib-147d81d15594cd73f3ad38ae36dae09c1004292f.zip
nixos/atuin: fix enable option typo
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/misc/atuin.nix2
1 files changed, 1 insertions, 1 deletions
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;