nixos-config/nixos/time.nix
2023-08-17 21:46:39 +05:00

9 lines
152 B
Nix

{ config, ... }:
{
# Часовой пояс
time.timeZone = "Asia/Yekaterinburg";
# Включить NTP.
services.timesyncd.enable = true;
}