diff options
author | Alex Auvolat <alex@adnab.me> | 2022-09-08 10:35:06 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-09-08 10:35:14 +0200 |
commit | b23218a7f6056d623f57dc4a06f0953252829fed (patch) | |
tree | 0586e6d693dc90faa654028c61662d54a9f57e35 /nix | |
parent | 2695fe4ae82025a560b7453751077f02dcf42ea7 (diff) | |
download | nixcfg-b23218a7f6056d623f57dc4a06f0953252829fed.tar.gz nixcfg-b23218a7f6056d623f57dc4a06f0953252829fed.zip |
systemd timesyncd
Diffstat (limited to 'nix')
-rw-r--r-- | nix/configuration.nix | 3 |
1 files changed, 2 insertions, 1 deletions
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; |