From 361aa3cddd63c614dde9a0439ecc78ea13f2fbca Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Sun, 24 Mar 2024 14:18:13 +1100 Subject: [PATCH] hosts/hyacinth: set timezone to Melbourne --- hosts/hyacinth/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/hyacinth/default.nix b/hosts/hyacinth/default.nix index d9a32ba..a7e4157 100644 --- a/hosts/hyacinth/default.nix +++ b/hosts/hyacinth/default.nix @@ -1,7 +1,7 @@ { config, inputs, modules, overlays, pkgs, ... }: { networking.hostName = "hyacinth"; system.stateVersion = "21.11"; - time.timeZone = "Asia/Phnom_Penh"; + time.timeZone = "Australia/Melbourne"; boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; nixpkgs.overlays = [ inputs.neovim-nightly.overlays.default ];