snowflake/modules/time.nix
notohh 9fcb66eaf0
All checks were successful
/ check (push) Successful in 32s
modules: add time module
2023-10-19 18:04:30 -04:00

24 lines
377 B
Nix

_: {
services.chrony = {
enable = true;
servers = [
# 0.us.pool.ntp.org
"134.215.114.62"
"192.189.65.187"
"96.245.170.99"
"192.92.6.30"
];
};
services.timesyncd = {
enable = true;
servers = [
# 0.us.pool.ntp.org
"134.215.114.62"
"192.189.65.187"
"96.245.170.99"
"192.92.6.30"
];
};
}