chrony added

This commit is contained in:
2025-11-02 15:14:09 +01:00
parent f415894082
commit 6d472fc14f
2 changed files with 8 additions and 0 deletions

7
chrony.nix Normal file
View File

@@ -0,0 +1,7 @@
{ config, ... }: {
services.chrony = {
enable = true;
enableNTS = true;
servers = [ "0.pool.ntp.org" "1.pool.ntp.org" "2.pool.ntp.org" "3.pool.ntp.org" ];
};
}