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!
Isn’t every reinstall an opportunity for changes?
You took the words right out of my mouth!
I version them with 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 did. I wanted more. I wanted
ln -sf
.
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!
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.
NixOS + home-manager
Git, GNU Stow, and a custom bash script.
Manage your ‘dot’ files??
Been doing Linux since Caldera OpenLinux 2.2 and I don’t think I have ever bothered back-ups except pinerc and maybe ~/.i3/config
dotdrop, because different dotfiles per OS/hist is supported (I am usingfedora, Ubuntu, Debian, macOS but you can configure it as you wish).
I tried a bunch that weren’t quite what I needed before landing on rcm - https://github.com/thoughtbot/rcm
lazy git plus gnu stow works great for me
My home directory is a git repo with a .gitignore that contains something like
* !.config/sway !.config/sway/* !.config/sway/**/*
Never have, definitely need to tho