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 }