nixos-config/nixos/time.nix

9 lines
152 B
Nix
Raw Normal View History

2023-08-17 21:46:39 +05:00
{ config, ... }:
{
# Часовой пояс
time.timeZone = "Asia/Yekaterinburg";
# Включить NTP.
services.timesyncd.enable = true;
}