fix: firefox gets wrong timezone on NixOS

This commit is contained in:
Ryan Yin
2023-07-30 18:12:22 +08:00
parent 7dc0adee72
commit 08d8c4cbc5

View File

@@ -1,4 +1,5 @@
{
config,
lib,
pkgs,
...
@@ -209,4 +210,9 @@
emoji = ["Noto Color Emoji"];
};
};
environment.variables = {
# fix https://github.com/NixOS/nixpkgs/issues/238025
TZ = "${config.time.timeZone}";
};
}