diff --git a/nixos/utils.nix b/nixos/utils.nix index 6ec1c21..feaea99 100644 --- a/nixos/utils.nix +++ b/nixos/utils.nix @@ -4,7 +4,6 @@ let keyboardLayout = config.var.keyboardLayout; configDir = config.var.configDirectory; in { - networking.hostName = hostname; networking.networkmanager.enable = true; @@ -18,7 +17,10 @@ in { allowReboot = false; }; - time.timeZone = config.var.timeZone; + time = { + timeZone = config.var.timeZone; + hardwareClockInLocalTime = true; + }; i18n.defaultLocale = config.var.defaultLocale; i18n.extraLocaleSettings = { LC_ADDRESS = config.var.extraLocale;