Files
Nomarchy/features/scripts/utils/nomarchy-install
Bernardo Magri f965f0be2c feat(audit): address batch 4 and finalize script audit
- Implement nomarchy-skill, nomarchy-manual, nomarchy-backup, nomarchy-install
- Implement nomarchy-install-docker-dbs (stub)
- Port nomarchy-docs-keybindings and nomarchy-docs-scripts to packaged scripts
- Add installerVm to flake.nix nixosConfigurations, packages, and apps
- Update nomarchy-test-installer to use nix run .#installerVm
- Add docker support to virtualization.nix and options.nix
- Add glow to script dependencies
- Finalize docs/SCRIPTS.md update
2026-04-25 22:39:11 +01:00

15 lines
337 B
Bash
Executable File

#!/usr/bin/env bash
# Nomarchy Install Script
# Entry point for the Nomarchy installer.
INSTALLER="/etc/install.sh"
[[ ! -f "$INSTALLER" ]] && INSTALLER="/etc/nixos/nomarchy/installer/install.sh"
if [[ -f "$INSTALLER" ]]; then
sudo "$INSTALLER" "$@"
else
echo "Error: Nomarchy installer not found at $INSTALLER"
exit 1
fi