Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daGrevis/Dotfiles
Dotfiles for my UNIX workstations
https://github.com/daGrevis/Dotfiles
dotfiles hammerspoon neovim tmux vim zsh
Last synced: about 1 month ago
JSON representation
Dotfiles for my UNIX workstations
- Host: GitHub
- URL: https://github.com/daGrevis/Dotfiles
- Owner: daGrevis
- Created: 2012-08-21T09:39:00.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-08-10T07:56:00.000Z (5 months ago)
- Last Synced: 2024-08-10T08:48:26.960Z (5 months ago)
- Topics: dotfiles, hammerspoon, neovim, tmux, vim, zsh
- Language: Vim Script
- Homepage:
- Size: 26.7 MB
- Stars: 28
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# daGrevis' Dotfiles
This repository contains configuration files for all kinds of software I'm using
on daily basis. Also known as "dotfiles", these files allow to replicate my
setup on another machine with relative ease.I'm using this to have practically identical setup between:
- MacOS running on MacBook Pro
- NixOS via VirtualBox running on desktop Windows
- Ubuntu running on my private server## Installation
On both NixOS and MacOS I have Nix and home-manager installed. Then `home.nix`
(in `nix/.config/home-manager`) can be used to manage symlinks, installed
packages and other configuration.In theory, on a working Nix installation with home-manager installed as a
standalone tool, all you would have to do is to symlink my `nix` configuration
and rebuild the system.### On NixOS
```sh
sudo ln -s /home/dagrevis/Dotfiles/nix/etc/nixos /etc/nixos
ln -s /home/dagrevis/Dotfiles/nix/.config/nixpkgs /home/dagrevis/.config/nixpkgs
ln -s /home/dagrevis/Dotfiles/nix/.config/home-manager /home/dagrevis/.config/home-manager
```### On macOS
```sh
ln -s /Users/dagrevis/Dotfiles/nix/.config/nixpkgs /Users/dagrevis/.config/nixpkgs
ln -s /Users/dagrevis/Dotfiles/nix/.config/home-manager /Users/dagrevis/.config/home-manager
```Then rebuilding the system and user environment should hopefully bring
everything up!```sh
sudo nixos-rebuild switch --upgrade
home-manager switch
```In practice, you will probably need to know what you are doing because things
might need some bit of tweaking here and there. :)Alternatively you can use `stow` to create the symlinks and skip all this fancy
schmancy nix business.```sh
stow -t ~ -d ~/Dotfiles -v neovim
```Example above would make symlinks for "neovim" package. All top-level
directories in this repo can be symlinked in this way.