From dbf8d74a245be6440a6f3c87c154faf07eab056f Mon Sep 17 00:00:00 2001 From: schweby Date: Sun, 19 Sep 2021 16:35:38 +0200 Subject: [PATCH] set timezones default is UTC no need to force it A desktop shoud be in the commonly used timezone. Forcing UTC has caused trouble multiple times. --- common/default.nix | 1 - desktop/default.nix | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/common/default.nix b/common/default.nix index e5cd2e3..fc0375b 100644 --- a/common/default.nix +++ b/common/default.nix @@ -36,7 +36,6 @@ in { security.sudo.wheelNeedsPassword = lib.mkDefault false; i18n.defaultLocale = "en_IE.UTF-8"; - time.timeZone = "UTC"; console = { font = "Lat2-Terminus16"; keyMap = "de"; diff --git a/desktop/default.nix b/desktop/default.nix index 5fbec0e..b8d769d 100644 --- a/desktop/default.nix +++ b/desktop/default.nix @@ -20,6 +20,7 @@ ] ++ (with pkgs; [ alacritty picom feh copyq polybar cinnamon.nemo rofi arandr notepadqq nomacs bat ]); sound.enable = true; + time.timeZone = "Europe/Berlin"; hardware.pulseaudio = { enable = true; package = pkgs.pulseaudioFull;