An open API service indexing awesome lists of open source software.

https://github.com/berquist/dotfiles

Personal configuration files for shell/program environments and emacs
https://github.com/berquist/dotfiles

ansible dotdrop dotfiles emacs-customizations

Last synced: 5 months ago
JSON representation

Personal configuration files for shell/program environments and emacs

Awesome Lists containing this project

README

          

* dotfiles

Don't forget =--recurse-submodules= when cloning!

The basic steps are:
- If on macOS, install Homebrew.
- Install Ansible.
- Install Ansible roles from Galaxy.
- Install software through the package manager.
- Install GitHub repos and programming languages.
- Deploy dotfiles.
- Set the shell to zsh.

To perform these steps,
#+begin_src bash
bash ./bootstrap_package_installation.bash
# depending on the OS; this step isn't smart yet
ansible-playbook ./ansible/install_packages_{arch,debian}.yaml -b -K
# or
ansible-playbook ./ansible/install_packages_homebrew.yaml
# then
ansible-playbook ./ansible/install_all_system.yaml -b -K
ansible-playbook ./ansible/install_all.yaml
ansible-playbook ./ansible/set_shell.yaml -b -K
#+end_src

** [[https://nixos.org/download.html][Nix package manager]]

Multi-user install:

#+begin_src bash
sh <(curl -L https://nixos.org/nix/install) --daemon
#+end_src

** [[https://nix-community.github.io/home-manager/index.html#sec-install-standalone][home-manager]]

#+begin_src bash
nix run home-manager/release-24.05 -- switch --flake ~/dotfiles#eric@osmium
#+end_src
See the [[file:Justfile][Justfile]] for more information.