fix timezones
Some checks failed
Build all NixOS Configurations / nix build (push) Failing after 3m25s

This commit is contained in:
Ingolf Wagner 2024-08-28 05:37:18 +07:00
parent 167875c1fc
commit 4489b24659
Signed by: palo
GPG key ID: 76BF5F1928B9618B
3 changed files with 12 additions and 5 deletions

View file

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

View file

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

View file

@ -16,6 +16,7 @@
]; ];
time.timeZone = "Asia/Bangkok";
#clan.core.facts.services = #clan.core.facts.services =
# let # let