From 1ae44e42ed9aaa9e8b11b410855b0f87d9ca4d4b Mon Sep 17 00:00:00 2001 From: Alexander Inyukhin Date: Sat, 15 Dec 2012 22:05:32 +0400 Subject: [PATCH] Use zoneinfo from tzdata This fixes #50 --- modules/config/timezone.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config/timezone.nix b/modules/config/timezone.nix index 38c698bc21c..e891af344cc 100644 --- a/modules/config/timezone.nix +++ b/modules/config/timezone.nix @@ -27,7 +27,7 @@ with pkgs.lib; environment.shellInit = '' export TZ=${config.time.timeZone} - export TZDIR=${pkgs.glibc}/share/zoneinfo + export TZDIR=${pkgs.tzdata}/share/zoneinfo ''; environment.etc = singleton