7 lines
137 B
Nix
7 lines
137 B
Nix
{ inputs, outputs, config, ... }: {
|
|
# Time
|
|
networking.timeServers = [ "10.8.10.1" ];
|
|
services.chrony = {
|
|
enable = true;
|
|
};
|
|
}
|