mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 11:41:59 -05:00
23 lines
391 B
Nix
23 lines
391 B
Nix
_: {
|
|
services.ntpd-rs = {
|
|
enable = true;
|
|
settings = {
|
|
source = [
|
|
{
|
|
address = "ntppool1.time.nl";
|
|
mode = "nts";
|
|
}
|
|
{
|
|
address = "ntppool2.time.nl";
|
|
mode = "nts";
|
|
}
|
|
{
|
|
address = "nts.netnod.se";
|
|
mode = "nts";
|
|
}
|
|
];
|
|
};
|
|
useNetworkingTimeServers = false;
|
|
};
|
|
}
|