From c9d96958cce76bd99658eb6ea37ea7e5210ca533 Mon Sep 17 00:00:00 2001 From: coolneng Date: Thu, 17 Oct 2019 23:20:21 +0200 Subject: [PATCH] Set up NTP synchronization --- Timeline.org | 6 ++++-- configuration.nix | 6 ++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Timeline.org b/Timeline.org index 3aed7b2..1df4c71 100644 --- a/Timeline.org +++ b/Timeline.org @@ -1,8 +1,10 @@ * Zion configuration ** General -*** TODO NTP daemon -*** TODO User account +*** DONE NTP daemon + CLOSED: [2019-10-17 Thu 23:20] +*** DONE User account + CLOSED: [2019-10-17 Thu 23:21] *** TODO Harden SSH *** TODO Import zpool *** TODO Tmux diff --git a/configuration.nix b/configuration.nix index ef94b47..c6d71f2 100644 --- a/configuration.nix +++ b/configuration.nix @@ -54,5 +54,11 @@ # Set vim as default editor programs.vim.defaultEditor = true; + + # Set timezone and synchronize NTP + time.timeZone = "Europe/Brussels"; + services.timesyncd.enable = true; + + # Import other configuration modules }