summary refs log tree commit diff
diff options
context:
space:
mode:
authoreyjhb <eyjhbb@gmail.com>2023-11-13 10:46:09 +0100
committerPeter Hoeg <peter@hoeg.com>2023-11-14 06:35:40 +0100
commit2387a37fa0c686f4541838843d07ae1104e180d7 (patch)
tree4ea26c63e066b86a78c1863cd3147310d074db89
parent7eddbf56907e20b14a2996597cfc6619d1c18aed (diff)
downloadnixpkgs-2387a37fa0c686f4541838843d07ae1104e180d7.tar
nixpkgs-2387a37fa0c686f4541838843d07ae1104e180d7.tar.gz
nixpkgs-2387a37fa0c686f4541838843d07ae1104e180d7.tar.bz2
nixpkgs-2387a37fa0c686f4541838843d07ae1104e180d7.tar.lz
nixpkgs-2387a37fa0c686f4541838843d07ae1104e180d7.tar.xz
nixpkgs-2387a37fa0c686f4541838843d07ae1104e180d7.tar.zst
nixpkgs-2387a37fa0c686f4541838843d07ae1104e180d7.zip
nixos/flexget: remove TZ envvar
-rw-r--r--nixos/modules/services/torrent/flexget.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/services/torrent/flexget.nix b/nixos/modules/services/torrent/flexget.nix
index 5cd7ae6ad7d..58a4b700149 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";