From 8a1f7da3d3f3998226beb395239ca4576244baf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82?= Date: Tue, 4 Aug 2026 20:06:51 +0200 Subject: [PATCH] fix: enable ntpd service so time auto-syncs on boot ntp-dinit was installed but ntpd was never enabled in services-artix.conf, so nothing synced the clock. On hosts where the RTC stores local time (e.g. QEMU -rtc base=localtime), first boot showed a UTC+offset shift (e.g. +2h for Europe/Paris in summer). Enabling ntpd corrects the clock within seconds of network up. fixes #13 --- .../etc/calamares-online/modules/services-artix.conf | 2 ++ .../live-overlay/etc/calamares/modules/services-artix.conf | 2 ++ 2 files changed, 4 insertions(+) diff --git a/iso-profiles/antergos/live-overlay/etc/calamares-online/modules/services-artix.conf b/iso-profiles/antergos/live-overlay/etc/calamares-online/modules/services-artix.conf index b3d843a..492e2cd 100644 --- a/iso-profiles/antergos/live-overlay/etc/calamares-online/modules/services-artix.conf +++ b/iso-profiles/antergos/live-overlay/etc/calamares-online/modules/services-artix.conf @@ -22,5 +22,7 @@ services: action: "enable" - name: "greetd" action: "enable" + - name: "ntpd" + action: "enable" - name: "syslog-ng" action: "enable" diff --git a/iso-profiles/antergos/live-overlay/etc/calamares/modules/services-artix.conf b/iso-profiles/antergos/live-overlay/etc/calamares/modules/services-artix.conf index c143a46..05798cc 100644 --- a/iso-profiles/antergos/live-overlay/etc/calamares/modules/services-artix.conf +++ b/iso-profiles/antergos/live-overlay/etc/calamares/modules/services-artix.conf @@ -22,6 +22,8 @@ services: action: "enable" - name: "greetd" action: "enable" + - name: "ntpd" + action: "enable" - name: "syslog-ng" action: "enable" - name: "userspawn"