base/timesyncd: specify ntp servers

This commit is contained in:
h7x4
2026-06-07 17:52:54 +09:00
parent b848e0f1cc
commit ac094d350d
2 changed files with 13 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{ ... }:
{
services.timesyncd = {
servers = [ "ntp.ntnu.no" ];
fallbackServers = [
"0.pool.ntp.org"
"1.pool.ntp.org"
"0.no.pool.ntp.org"
];
};
}