nixos/tzupdate: Fix ShellCheck issue (#370908)

This commit is contained in:
Pol Dellaiera
2025-01-04 23:36:56 +01:00
committed by GitHub
+1 -1
View File
@@ -28,7 +28,7 @@ in {
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
script = ''
timedatectl set-timezone $(${lib.getExe pkgs.tzupdate} --print-only)
timedatectl set-timezone "$(${lib.getExe pkgs.tzupdate} --print-only)"
'';
serviceConfig = {