Skip to content

marvindore/dotfiles

Repository files navigation

Installation

MACOS

First run xcode-select --install

  • Install nix

    https://zero-to-nix.com/

  • Or install brew and run the macos-setup.sh script and skip all nix steps
  • If brew not found on command line add it to your path:
    • echo "export PATH=/opt/homebrew/bin:$PATH" >> ~/.zshrc

** Install nix-darwin**

cd ~/Downloads
curl -LJO https://raw.githubusercontent.com/marvindore/dotfiles/refs/heads/main/.config/nix-darwin/flake.nix
nix run nix-darwin --extra-experimental-features "nix-command flakes" -- switch --flake ~/Downloads#mchip

** Setup ssh**

Use GNU stow to setup symlinks

cd dotfiles
stow .

# the following command will look for existing dotfiles at that location and use those to overwrite the files in this directory
stow --adopt .

Now that symlinks are created, use the flake from the dotfiles

nix run nix-darwin --extra-experimental-features "nix-command flakes" -- switch --flake ~/.config/nix-darwin#mchip
# Rebuild config
darwin-rebuild switch --flake ~/dotfiles/.config/nix-darwin#mchip 

remember by default the flakes use hostname but in our case we named config mchip

Finding packages with nix

  • website: search.nixos.org
  • cli: nix search <repository_from_config> i.e. nix search nixpkgs tmux

Updating packages in nix

Update packages requires two commands

nix flake update #which updates the flake.lock file
#rebuild your config
darwin-rebuild switch --flake ~/dotfiles/.config/nix-darwin#mchip 

Set zsh as default shell

First view list of shells, if bash not listed and you add zsh you might find you can no longer log in as root and bash doesn't work

cat /etc/shells
# add zsh
command -v zsh | sudo tee -a /etc/shells
# now we have told terminal zsh is valid shell login, set as default
sudo chsh -s $(which zsh) $USER

Setup Vale on MacOS

cp ~/dotfiles/.config/vale/.vale.ini "~/Library/Application Support/vale/"
~/.local/share/nvim/mason/packages/vale/vale --config="$HOME/Library/Application Support/vale/.vale.ini" sync

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published