nixos/modules/ntp/default.nix

10 lines
102 B
Nix
Raw Normal View History

2022-05-05 22:26:05 +02:00
{ ... }:
{
services.ntp = {
enable = true;
2022-05-05 22:27:26 +02:00
servers = [
2022-05-05 22:26:05 +02:00
"loki.2li.local"
];
};
}