mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
Init:start-nix
This commit is contained in:
22
modules/services/ntp.nix
Normal file
22
modules/services/ntp.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
_: {
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user