From 2387a37fa0c686f4541838843d07ae1104e180d7 Mon Sep 17 00:00:00 2001 From: eyjhb Date: Mon, 13 Nov 2023 10:46:09 +0100 Subject: [PATCH] nixos/flexget: remove TZ envvar --- nixos/modules/services/torrent/flexget.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/torrent/flexget.nix b/nixos/modules/services/torrent/flexget.nix index 5cd7ae6ad7db..58a4b7001497 100644 --- a/nixos/modules/services/torrent/flexget.nix +++ b/nixos/modules/services/torrent/flexget.nix @@ -64,7 +64,6 @@ in { path = [ pkg ]; serviceConfig = { User = cfg.user; - Environment = "TZ=${config.time.timeZone}"; ExecStartPre = "${pkgs.coreutils}/bin/install -m644 ${ymlFile} ${configFile}"; ExecStart = "${pkg}/bin/flexget -c ${configFile} daemon start"; ExecStop = "${pkg}/bin/flexget -c ${configFile} daemon stop";