Unverified Commit a1b5a489 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

nixos/chrony: fix typo in variable name: dispathcer -> dispatcher (#489981)

parents 6a8a6f7e b44354d0
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;
      }
    ];