fix timezones
This commit is contained in:
parent
167875c1fc
commit
4489b24659
3 changed files with 12 additions and 5 deletions
|
@ -115,8 +115,9 @@ let
|
||||||
locations = {
|
locations = {
|
||||||
UTC = "Etc/UTC";
|
UTC = "Etc/UTC";
|
||||||
Berlin = "Europe/Berlin";
|
Berlin = "Europe/Berlin";
|
||||||
Cuba = "America/Havana";
|
Thailand = "Asia/Bangkok";
|
||||||
Wellington = "Pacific/Auckland";
|
#Cuba = "America/Havana";
|
||||||
|
#Wellington = "Pacific/Auckland";
|
||||||
};
|
};
|
||||||
sort = "alphabetical";
|
sort = "alphabetical";
|
||||||
refreshInterval = 60;
|
refreshInterval = 60;
|
||||||
|
@ -291,12 +292,16 @@ let
|
||||||
left = 0;
|
left = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
rates = wtfModule {
|
yfinance = wtfModule {
|
||||||
type = "yfinance";
|
type = "yfinance";
|
||||||
top = 3;
|
top = 3;
|
||||||
left = 0;
|
left = 0;
|
||||||
title = "rates";
|
title = "rates";
|
||||||
symbols = [ "EURUSD=X" "EURNZD=X" ];
|
symbols = [
|
||||||
|
"EURUSD=X"
|
||||||
|
"EURNZD=X"
|
||||||
|
"EURTHB=X"
|
||||||
|
];
|
||||||
refreshInterval = 60;
|
refreshInterval = 60;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
|
{ lib, ... }:
|
||||||
{
|
{
|
||||||
# some system stuff
|
# some system stuff
|
||||||
# -----------------
|
# -----------------
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = lib.mkDefault "Europe/Berlin";
|
||||||
#time.timeZone = lib.mkDefault "Pacific/Auckland";
|
#time.timeZone = lib.mkDefault "Pacific/Auckland";
|
||||||
#time.timeZone = lib.mkDefault "Asia/Singapore";
|
#time.timeZone = lib.mkDefault "Asia/Singapore";
|
||||||
#time.timeZone = lib.mkDefault "Asia/Makassar";
|
#time.timeZone = lib.mkDefault "Asia/Makassar";
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
time.timeZone = "Asia/Bangkok";
|
||||||
|
|
||||||
#clan.core.facts.services =
|
#clan.core.facts.services =
|
||||||
# let
|
# let
|
||||||
|
|
Loading…
Reference in a new issue