Commit f3991d24284a

Vincent Demeester <vincent@sbr.pm>
2026-06-10 14:59:15
fix(aomi): remove dnf nscd from bootstrap, handled by system-manager
1 parent 87f1d20
Changed files (1)
imperative
imperative/aomi/bootstrap.sh
@@ -158,19 +158,14 @@ install_native_apps() {
 	log_info "Installing native apps..."
 
 	# Niri compositor + Wayland essentials + terminal
-	log_info "Installing niri, Wayland support, kitty, and nscd..."
+	log_info "Installing niri, Wayland support, and kitty..."
 	sudo dnf install -y \
 		niri \
 		kitty \
-		nscd \
 		xwayland-satellite \
 		xdg-desktop-portal-gnome \
 		xdg-desktop-portal-gtk
 
-	# nscd is required for nix-built programs to resolve LDAP/SSSD users
-	# Nix glibc can't load system NSS modules but can talk to nscd's socket
-	sudo systemctl enable --now nscd
-
 	# Flatpak apps (sandboxed, auto-updating)
 	if ! command -v flatpak &>/dev/null; then
 		log_info "Installing flatpak..."