aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-20 13:56:09 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-20 13:56:09 +0100
commitd22a2336c19fc1fd08e3b1f9d88629b319558cab (patch)
tree907dcb604718125d7bf8d652070bac5893f90491 /bootstrap.sh
parent5f361d0172103df5c16baae8427dba78e8b0dfae (diff)
downloaddotfiles-d22a2336c19fc1fd08e3b1f9d88629b319558cab.tar.gz
dotfiles-d22a2336c19fc1fd08e3b1f9d88629b319558cab.tar.bz2
dotfiles-d22a2336c19fc1fd08e3b1f9d88629b319558cab.zip
feat(bootstrap): install nix + Home-Manager on Arch host (p8)
Append two steps to the root bootstrap.sh: 5a. install nix via the Determinate Systems multi-user installer (same as remote-dev/nix; gives us a proper nix-daemon.service). 5b. chsh to ~/.nix-profile/bin/zsh after appending to /etc/shells. Add a 'just nix-switch' recipe that auto-picks the host vs vm profile based on /etc/os-release ID, and wire it into 'just init' and 'just sync' so day-to-day reconciliation also re-applies Home-Manager. The recipe is a no-op when nix isn't installed, so it stays safe for pre-bootstrap states and for hosts where the user opts out. Phase 8 of the nix-on-host migration plan.
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 2e5721d..1d3783b 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -73,10 +73,42 @@ fi
# git hooks. The classic 'sudo' package stays installed because
# base-devel hard-depends on it; that's harmless — the binary is
# never invoked once /usr/local/bin/sudo is in place.
+# `just init` also runs `just nix-switch` (step 5b below); the nix
+# install needs to happen before that.
cd "$DOTFILES_DIR"
+
+# 5a. install nix (Determinate Systems installer, multi-user) before
+# `just init`, so `just nix-switch` finds it.
+if ! command -v nix >/dev/null 2>&1; then
+ log 'installing nix (Determinate Systems multi-user installer)'
+ curl --proto '=https' --tlsv1.2 -sSf -L \
+ https://install.determinate.systems/nix |
+ sh -s -- install linux --no-confirm
+ # Source nix env for the rest of this script (installer writes
+ # /etc/profile.d/nix.sh but the current shell hasn't sourced it).
+ if [ -f /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh ]; then
+ # shellcheck disable=SC1091
+ . /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
+ fi
+fi
+
log 'running just init'
just init
+# 5b. chsh to nix-store zsh (provisioned by home-manager via nix/common.nix)
+NIX_ZSH="$HOME/.nix-profile/bin/zsh"
+if [ -x "$NIX_ZSH" ]; then
+ if ! grep -qxF "$NIX_ZSH" /etc/shells 2>/dev/null; then
+ log "appending $NIX_ZSH to /etc/shells"
+ echo "$NIX_ZSH" | sudo tee -a /etc/shells >/dev/null
+ fi
+ current_shell="$(getent passwd "$USER" | cut -d: -f7)"
+ if [ "$current_shell" != "$NIX_ZSH" ]; then
+ log "changing login shell to $NIX_ZSH"
+ sudo chsh -s "$NIX_ZSH" "$USER"
+ fi
+fi
+
# 6. refresh pacman mirrorlist once via reflector (config deployed by chezmoi)
log 'refreshing pacman mirrorlist via reflector'
sudo reflector @/etc/xdg/reflector/reflector.conf \