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
This commit is contained in:
2026-08-04 20:06:51 +02:00
parent dca525ec14
commit 8a1f7da3d3
2 changed files with 4 additions and 0 deletions
@@ -22,5 +22,7 @@ services:
action: "enable" action: "enable"
- name: "greetd" - name: "greetd"
action: "enable" action: "enable"
- name: "ntpd"
action: "enable"
- name: "syslog-ng" - name: "syslog-ng"
action: "enable" action: "enable"
@@ -22,6 +22,8 @@ services:
action: "enable" action: "enable"
- name: "greetd" - name: "greetd"
action: "enable" action: "enable"
- name: "ntpd"
action: "enable"
- name: "syslog-ng" - name: "syslog-ng"
action: "enable" action: "enable"
- name: "userspawn" - name: "userspawn"