this post was submitted on 18 Jul 2023
26 points (100.0% liked)
Experienced Devs
125 readers
1 users here now
A community for discussion amongst professional software developers.
Posts should be relevant to those well into their careers.
For those looking to break into the industry, are hustling for their first job, or have just started their career and are looking for advice, check out:
- Logo base by Delapouite under CC BY 3.0 with modifications to add a gradient
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I've done symlinks into a separate directory before, but by far my favorite method is to just let
~
be a git repo. It's maximally simple, no other tooling needed besidesgit
.There are a few key steps to making this work well:
echo '*' > ~/.gitignore
: This waygit status
isn't full of untracked files. I can stillgit add -f
what I actually want to track.git branch -m dots
: For clarity in my shell prompt.[ -d "$HOME/.local/$(hostname)/bin" ] && PATH=$PATH:$HOME/.local/$(hostname)/bin
and similar if there's config I want to apply only to certain hosts.Pretty happy with nixos these days, after the initial (crazy) learning curve. But I really like the creative simplicity of this idea
~~Stole~~ Forked this idea from Drew Devault.
I'm looking at NixOS now for my server, and while I understand the host config, I'm curious whether I could integrate this into my config in some way.