{ lib, pkgs, ... }: { networking.networkmanager.dispatcherScripts = [ { source = lib.meta.getExe ( pkgs.writeShellApplication { name = "timezone-sync"; runtimeInputs = with pkgs; [ curl ]; text = builtins.readFile ./timezone.sh; } ); } ]; }