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