From b44354d0c8a0264dcb50c73b4a0823f5942d5599 Mon Sep 17 00:00:00 2001 From: royce-c <114127058+royce-c@users.noreply.github.com> Date: Thu, 12 Feb 2026 17:24:24 -0800 Subject: [PATCH] nixos/chrony: fix typo in variable name: dispathcer -> dispatcher --- nixos/modules/services/networking/ntp/chrony.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/ntp/chrony.nix b/nixos/modules/services/networking/ntp/chrony.nix index a79599076502..b13a04ece80f 100644 --- a/nixos/modules/services/networking/ntp/chrony.nix +++ b/nixos/modules/services/networking/ntp/chrony.nix @@ -51,7 +51,7 @@ let ++ lib.optional cfg.enableMemoryLocking "-m" ++ cfg.extraFlags; - dispathcerScriptFile = pkgs.callPackage ( + dispatcherScriptFile = pkgs.callPackage ( { runCommand, srcOnly, @@ -258,7 +258,7 @@ in networking.networkmanager.dispatcherScripts = lib.mkIf cfg.dispatcherScript [ { type = "basic"; - source = dispathcerScriptFile; + source = dispatcherScriptFile; } ];