Merge pull request #50 from surr/fixes/tzdata

timezone should be taken from recent tzdata rather than glibc
This commit is contained in:
Michael Raskin 2012-12-29 10:29:21 -08:00
commit 9b7ce4a1b5

View file

@ -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