fix(nixos): Set timezone to UTC on servers
This commit is contained in:
parent
5d45bfd4b0
commit
862a6063d0
1 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
_: {
|
{config, ...}: {
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone =
|
||||||
|
if config.marleyos.isServer
|
||||||
|
then "UTC"
|
||||||
|
else "America/Los_Angeles";
|
||||||
|
|
||||||
i18n = {
|
i18n = {
|
||||||
defaultLocale = "en_US.UTF-8";
|
defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue