A modern, lightweight, and modular dotfiles management system using Chezmoi for orchestration and best-in-class tools (aqua, mise, homebrew) for package management.
This dotfiles repository provides a comprehensive solution for managing my development environment across multiple machines with a focus on:
- Lightweight operation: Everything runs on-demand, no background daemons
- Modular design: Clean separation of concerns with specialized tools
- Elegant environment management: Centralized
.env
files for all configurations - Cross-platform compatibility: Works on macOS and Linux with OS-specific settings
- Reproducibility: Version-controlled configurations
Chezmoi serves as the central orchestrator for the entire dotfiles ecosystem:
- Manages configuration files with templating support
- Runs scripts in a controlled, ordered manner
- Handles machine-specific differences
- Provides a consistent way to update configurations
The repository integrates several specialized tools:
-
Aqua: Manages CLI binaries (kubectl, helm, etc.)
- Speedy, lightweight, reproducible installation
- Version-controlled binary management
-
Mise: Manages language SDKs and runtimes
- Handles multiple versions of languages (Rust, Go, Node, Python, etc.)
- Manages global tool installations via pipx, npm, etc.
-
Homebrew: Manages system packages and GUI apps (macOS)
- Uses Brewfile for reproducible installations
- Handles GUI applications via Casks
A clean, modular approach to environment variables:
-
.env
files: Standard format for environment variables.env
: Core variables for all systems.env.macos
: macOS-specific variables.env.linux
: Linux-specific variables.env.local
: Machine-specific overrides (not tracked in git)
-
Central loader:
~/.local/bash/load_env.sh
script- Intelligently loads the right files
- Handles variable expansion
- Provides helper functions like
show_env
andreload_env
- Install Chezmoi and initialize with this repository:
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply username/dotfiles
- Chezmoi will:
- Install required tools (Homebrew, Aqua, Mise)
- Set up environment files
- Configure your shell
- Install packages based on your OS
If you prefer to set up step-by-step:
- Clone the repository:
git clone https://github.com/username/dotfiles.git
cd dotfiles
- Install Chezmoi:
sh -c "$(curl -fsLS get.chezmoi.io)"
- Initialize Chezmoi with the local repository:
chezmoi init --source=.
chezmoi apply
- View environment variables:
show_env
- Reload environment:
reload_env
- Edit environment variables:
- System-wide:
chezmoi edit ~/.config/env/.env
- OS-specific:
chezmoi edit ~/.config/env/.env.macos
- Machine-specific:
$EDITOR ~/.config/env/.env.local
- System-wide:
- Install or update Aqua tools:
aqua install
- Install or update language runtimes:
mise install
- Install or update Homebrew packages (macOS):
brew bundle --file=~/Brewfile
Update your dotfiles from the git repository:
chezmoi update
Add a new file to Chezmoi management:
chezmoi add ~/.some-config-file
- Edit your local environment variables:
$EDITOR ~/.config/env/.env.local
- Create template variations in Chezmoi:
# Example .bashrc with hostname condition
{{ if eq .chezmoi.hostname "work-laptop" }}
# Work-specific bash settings
{{ else }}
# Personal bash settings
{{ end }}
- Aqua tools: Edit
~/.config/aquaproj-aqua/aqua.yaml
- Mise languages: Edit
~/.config/mise/config.toml
- Homebrew packages: Edit
~/Brewfile
- Environment variables: Add to the appropriate
.env
file
- Default macOS system preferences via
defaults
command - Homebrew package and Cask installation
- macOS-specific environment variables
- Distribution detection and appropriate package installation
- Linux-specific environment variables and paths
The repository includes a variety of Mise tasks to simplify common operations:
mise run init:dirs
- Create necessary directoriesmise run init:dotfiles
- Update dotfilesmise run setup:darwin
- macOS-specific setupmise run show:env
- Display environment information
To extend this dotfiles repository:
- Add new configuration files using
chezmoi add
- Create new run scripts in the
run_scripts/
directory - Add new environment variables to the appropriate
.env
file - Commit your changes and push to git