Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 941 Bytes

File metadata and controls

38 lines (26 loc) · 941 Bytes

dotfiles

asciicast

Install

You have a few installation options:

  1. Use Nix Profiles (recommended)
  2. Overwrite existing ~/.bashrc
  3. Standalone executable: billsh

Use Nix Profiles (recommended)

$ nix-env -f https://github.com/wpcarro/dotfiles/archive/main.tar.gz -iA dotfiles.bashrc
$ vim ~/.bashrc # add "source ~/.nix-profile/etc/bashrc"

Overwrite existing ~/.bashrc

$ mv ~/.bashrc{,.bak} # backup your bashrc
$ ln -sf $(nix-build https://github.com/wpcarro/dotfiles/archive/main.tar.gz -A dotfiles.bashrc --no-out-link)/etc/bashrc ~/.bashrc

Standalone executable: billsh

$ nix-env -f https://github.com/wpcarro/dotfiles/archive/main.tar.gz -iA dotfiles.shell

Nix

You may need to install Nix:

$ sh <(curl -L https://nixos.org/nix/install) --daemon