diff --git a/nixos/modules/services/networking/ntp/chrony.nix b/nixos/modules/services/networking/ntp/chrony.nix index f9c92768b63a..b16e886788bb 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; } ];