Rename repo references from usync to grapho

Update README and flake.nix to use grapho as the repo name
in all git URLs and examples.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-13 08:39:25 -05:00
parent cb55be1324
commit f8b344d26d
2 changed files with 11 additions and 11 deletions

View File

@@ -12,11 +12,11 @@ A NixOS-based system for managing the three types of data in a computer:
```bash ```bash
# One-command setup from any git server # One-command setup from any git server
nix run 'git+ssh://git@your-server/you/usync.git' nix run 'git+ssh://git@your-server/you/grapho.git'
# Or clone first, then run # Or clone first, then run
git clone git@your-server:you/usync.git git clone git@your-server:you/grapho.git
cd usync cd grapho
nix run . nix run .
``` ```
@@ -26,8 +26,8 @@ nix run .
```bash ```bash
# 1. Clone the repo # 1. Clone the repo
git clone git@your-server:you/usync.git git clone git@your-server:you/grapho.git
cd usync cd grapho
# 2. Run setup (one command - includes all dependencies) # 2. Run setup (one command - includes all dependencies)
nix run . nix run .
@@ -38,7 +38,7 @@ nix run .
# 4. Push config to your git server # 4. Push config to your git server
cd ~/.config/usync/config cd ~/.config/usync/config
git remote add origin git@your-server:you/usync-config.git git remote add origin git@your-server:you/grapho-config.git
git push -u origin main git push -u origin main
``` ```
@@ -46,11 +46,11 @@ git push -u origin main
```bash ```bash
# One command from your git server # One command from your git server
nix run 'git+ssh://git@your-server/you/usync.git' nix run 'git+ssh://git@your-server/you/grapho.git'
# Choose option [2], enter your git URL and age key # Choose option [2], enter your git URL and age key
# Or non-interactively: # Or non-interactively:
git clone git@your-server:you/usync.git && cd usync git clone git@your-server:you/grapho.git && cd grapho
nix run . -- <config-git-url> <your-age-key> nix run . -- <config-git-url> <your-age-key>
``` ```
@@ -78,10 +78,10 @@ Add to your flake.nix inputs, then import the module:
```nix ```nix
{ {
inputs.usync.url = "git+ssh://git@your-server/you/usync.git"; inputs.grapho.url = "git+ssh://git@your-server/you/grapho.git";
# In your configuration: # In your configuration:
imports = [ inputs.usync.nixosModules.default ]; imports = [ inputs.grapho.nixosModules.default ];
} }
``` ```

View File

@@ -105,7 +105,7 @@
else else
echo "Error: Cannot find setup script" echo "Error: Cannot find setup script"
echo "Run from the repo directory, or clone it first:" echo "Run from the repo directory, or clone it first:"
echo " git clone git@your-server:you/usync.git" echo " git clone git@your-server:you/grapho.git"
exit 1 exit 1
fi fi
fi fi