diff --git a/README.md b/README.md index 7b4d00b..5f69f3d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ wsl -d NixOS 2. 运行安装脚本: ```bash -bash <(curl -fsSL https://git.furtherverse.com/imbytecat/archlinux-config/raw/branch/nixos/scripts/install.sh) +bash <(curl -fsSL https://git.furtherverse.com/imbytecat/nix-config/raw/branch/main/scripts/install.sh) ``` 3. 重新登录,配置 Git 身份: @@ -34,13 +34,13 @@ git config --global user.email "你的邮箱" 2. 运行安装脚本(传入 `bare` 参数): ```bash -bash <(curl -fsSL https://git.furtherverse.com/imbytecat/archlinux-config/raw/branch/nixos/scripts/install.sh) bare +bash <(curl -fsSL https://git.furtherverse.com/imbytecat/nix-config/raw/branch/main/scripts/install.sh) bare ``` 3. 生成硬件配置并重新应用: ```bash -cd ~/.config/nixos-config +cd ~/.config/nix-config sudo nixos-generate-config --show-hardware-config > hosts/bare/hardware-configuration.nix # 取消 hosts/bare/default.nix 中 imports 的注释 sudo nixos-rebuild switch --flake .#bare @@ -72,7 +72,7 @@ sudo nixos-rebuild switch --flake .#bare ## 日常使用 ```bash -cd ~/.config/nixos-config +cd ~/.config/nix-config # 更新配置 git pull && sudo nixos-rebuild switch --flake .#wsl diff --git a/scripts/install.sh b/scripts/install.sh index 2217b12..7d95244 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -3,8 +3,8 @@ # 在 NixOS-WSL 或裸机 NixOS 中运行 set -euo pipefail -REPO_URL="https://git.furtherverse.com/imbytecat/archlinux-config.git" -CONFIG_DIR="$HOME/.config/nixos-config" +REPO_URL="https://git.furtherverse.com/imbytecat/nix-config.git" +CONFIG_DIR="$HOME/.config/nix-config" FLAKE_TARGET="${1:-wsl}" # 默认 wsl,裸机传入 bare echo "📥 获取配置仓库..." @@ -12,7 +12,7 @@ if [[ -d "$CONFIG_DIR/.git" ]]; then echo "⏩ 仓库已存在,拉取最新..." git -C "$CONFIG_DIR" pull else - git clone -b nixos "$REPO_URL" "$CONFIG_DIR" + git clone "$REPO_URL" "$CONFIG_DIR" fi echo "⚙️ 应用系统配置(目标: $FLAKE_TARGET)..."