From b23218a7f6056d623f57dc4a06f0953252829fed Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Thu, 8 Sep 2022 10:35:06 +0200 Subject: [PATCH] systemd timesyncd --- nix/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/configuration.nix b/nix/configuration.nix index 26619d3..353cc7d 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -71,7 +71,8 @@ SystemMaxUse=1G programs.vim.defaultEditor = true; # Enable network time - services.ntp.enable = true; + services.ntp.enable = false; + services.timesyncd.enable = true; # Enable the OpenSSH daemon and disable password login. services.openssh.enable = true;