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