From 5b3ebdccf3496f4150b5446b76002ab4ad5d53ea Mon Sep 17 00:00:00 2001 From: alexion Date: Sun, 19 Jul 2026 16:55:10 -0400 Subject: [PATCH] docs: correct the repository name in the install procedure The clone step named a repository that does not exist, so following the procedure verbatim failed before reaching the install. The remote is alexion/dotfiles. --- docs/install.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/install.md b/docs/install.md index 2b9e6e2..148c778 100644 --- a/docs/install.md +++ b/docs/install.md @@ -59,16 +59,16 @@ Confirm you have connectivity (`ping -c1 github.com`) before continuing. Clone this repo onto the live ISO and work from that local checkout: ```console -$ git clone ssh://gitea@git.alexion.dev:2022/alexion/dotfiles-nixos.git -$ cd dotfiles-nixos +$ git clone ssh://gitea@git.alexion.dev:2022/alexion/dotfiles.git +$ cd dotfiles ``` Cloning over SSH needs your Gitea SSH key present in the live session, since the ISO starts with none. If getting the key onto the ISO is inconvenient, clone over HTTPS instead and tell git to skip the self-signed certificate: ```console -$ git -c http.sslVerify=false clone https://git.alexion.dev/alexion/dotfiles-nixos.git -$ cd dotfiles-nixos +$ git -c http.sslVerify=false clone https://git.alexion.dev/alexion/dotfiles.git +$ cd dotfiles ``` Do **not** point `disko-install` straight at the Gitea flake URL.