Skip to content

jscelza/chezmoi-files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chezmoi Files

Control Structure

Below's diagram shows the structure of how resources are installed and configured. Three main tools are used to configure your system. chezmoi installs asdf andHomebew. Asdf and brew then install binaries leveraging chezmoi to set configuration files.

├── chezmoi
    ├── asdf
    │   ├── K8s tools (kubectx, kubens)
    │   ├── Lanaguages (ruby, golang, python, node, etc)
    │   ├── Tools (teleport, terraform, terragrunt, vault)
    │   ├── Utilies (jq, awscli, istioctl)
    ├── brew
    │   ├── CLI Not support by asdf
    │   ├── Desktop Application (Code, Iterm2, etc)
    │   ├── Fronts (Fira, Nerd Font, etc)
    │   ├── GNU Tools
    │   ├── GPG Untils
    ├── Configuration files (i.e. dotfiles)
    │   ├── asdf (.tool_versions)
    │   ├── Git (.gitconfig, .gitignore)
    │   ├── OSx Default
    │   ├── Spaceship (.spaceshiprc.zsh) # moved to .config
    │   └── Zsh (.zprofile, .zshrc)
    └── Directories
       └── ~/code/work
       └── ~/temp

Getting started

Single Command Boot strapping

Run the following to install of chezmoi and set everything up in a single command

From a terminal

xcode-select --install
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply https://gitlab.com/jeffs-public/chezmoi-files

Setting up 1Password

In order to set up 1password, the CLI is used to add the account and log you in. In order to do this you will need your Email, Secret, password and an authorization code if you use 2FA.

During setup you will see the following if no account has been setup.

  • Example:
Enter your sign-in address (example.1password.com): my.1password.com
Enter the email address for your account on subdomain.1password.com: XXXXXXZ@domain.com
Enter the Secret Key for XXXXXXZ@domain.com on subdomain.1password.com:
Enter the password for XXXXXXZ@domain.com at subdomain.1password.com:
Enter your six-digit authentication code: NNNNNN
Now run 'eval $(op signin)' to sign in.
# Eval auto runs
Enter the password for XXXXXXZ@domain.com at subdomain.1password.com:

You can export OP_SH=1passwordShortname to log in an account beside default.

The following references in 1Password need to be set in your Personal vault

Type Name Label
Secure Note "git.config" email: you@domain.com, name: First Last
Secure Note "zshrc" SRC_ENDPOINT: "https://endpoint", TELEPORT_PROXY: "endpoint"
SSH Key "personal1.git.id_rsa" n/a
SSH key "work1.git.id_rsa" n/a

All Items should have a tag of Setup for easier look up

From Scratch or Making changes

From a terminal

  1. Fun below commands
mkdir ~/bin && sh -c "$(curl -fsLS get.chezmoi.io)" -- -b ~/bin
export PATH=~/bin:$PATH
chezmoi update
  1. Update you respected .dotfiles and add files with chezmoi add <file/dir name>
  2. Check out your diff chezmoi diff
  3. Apply with chezmoi apply
  4. Commit your changes to git and push to the respository

Reference

Improvements/Fixes

  • Fix issue with older machine that don't leverage /opt/homebrew directory
  • Determine issue with docker install on fresh Mac
  • Fix Issue with fresh install not setting path correctly with brew installation.
  • Add Clean up to ASDF for version not in tools-version file.
  • Set up tokens/private configuration from OnePassword
    • GITLAB_ACCESS_TOKEN / GITLAB_TOKEN
    • SRC_ACCESS_TOKEN for src-cli
    • BUNDLE_GEM__FURY__IO for Gem Fury
  • Kubectl tab completion broken
  • Handle xcode-select --install

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published