Unverified Commit b44354d0 authored by royce-c's avatar royce-c
Browse files

nixos/chrony: fix typo in variable name: dispathcer -> dispatcher

parent a4100290
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
      }
    ];