I’m looking for recommendations for a dotfile manager - there are so many out there I’ve got a bit of options paralysis!
I’d like a system that can backup all my dotfiles - with version management - and, if I nuked my home directory, could restore them all for me with a simple command.
Thanks in advance for you suggestions!
You guys manage your dot files? Huh!
I version them with Git.
Git
Git and a script file that’s basically just a ton of ln - s commands
I honestly don’t think I’ve ever found myself wanting more
I do basically the same, but using GNU Stow instead of doing the ln myself
I did. I wanted more. I wanted
ln -sf
.
NixOS + home-manager
I used yadm for a while and liked it. It is a git wrapper that makes git’ing your home folder for config files less messy
Now I don’t care so much for keeping settings anymore and use mainly vanilla settings, therefore I stopped using it
Second this, works great for multiple OSs as well, Linux and OSX in the same repo.
nuking your home directory
Imho, in that case, you should look int a more proper backup strategy to restore all your files, not just your configs.
Thanks - yes I do have that, but I also wanted something specific to my dotfiles to make management and restoration a bit easier.
I have a vorta backup, running on a regular basis for my home dir which has GBs of data.
Mounting and restoring files is literally a matter of seconds.
But if you want something that you can easily take with you, you can go with a symlink/git approach:
- have a folder “configs”
- move all your dotfiles thst have NO sensitive data like credentials into that folder
- symlink them into their proper place
- use GIT to track them and push them to a git repo
Once you need them somewhere else, it’s just a
git pull
away… easy as that.What I dislike about existing solutions, is they come with their own binaries, conventions, and stuff, but basically do almost the same… this is the “raw way” that will hold up on any system, and almost all of them have git.
cp -r
to an external drive. Andcp -r
back in case something goes wrong.I know, it’s boring and no way “modern”. But hey, it works and it does not require internet access!
Git, GNU Stow, and a custom bash script.
dotdrop, because different dotfiles per OS/hist is supported (I am usingfedora, Ubuntu, Debian, macOS but you can configure it as you wish).
a git repository configured to ignore basically everything except the dotfiles. For my sway config I load configs from a symlinked folder, which points to a different config depending on the machine being configured.
You don’t need a dotfile manager, you need proper backups.
Por que no los dos?
My own intricate system of 4 git repos to manage dotfiles, bash initialization, cli tools/scripts, and system state.
The last one keeps track of installed packages and “dotfiles” out of the home directory (system config files like /etc/hosts).
I’ve used homeshick https://github.com/andsens/homeshick for a few years and it’s been running fine. It can load two git repos, one common public repo and one private one for work config.
I tried a bunch that weren’t quite what I needed before landing on rcm - https://github.com/thoughtbot/rcm