1
1
Fork 0

Change time zone to UTC

This commit is contained in:
Tim Van Baak 2023-08-01 17:29:12 -07:00
parent a78c36b871
commit b216c2acd9
1 changed files with 6 additions and 1 deletions

View File

@ -18,7 +18,12 @@
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "America/Los_Angeles";
time.timeZone = "UTC";
services.ntp = {
enable = true;
servers = [ "time.nist.gov" ];
};
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";