I’m curious, is anyone using chezmoi on NixOS? I realize home-manager is far more popular within the Nix community, but for whatever reason I’ve been hesitant to embrace it. I’m reading about chezmoi, and strongly considering giving it a try.
chezmoi is “just” a dotfile manager, whereas hm is a tool for configuring your entire environment. If you are already on nixos, which use-cases are better served by chezmoi (or other dotfile managers) than hm?
I still use a dotfile manager (but not chezmoi) on NixOS and macOS (I have been storing my configs in the dotfile repo, though I think I’ll break the purest ~config part of that out into a flake when I have energy to convert it.
I still use a dotfile manager (but not chezmoi) on NixOS and macOS
There are a few applications where the configuration doesn’t lend itself to being statically defined and read-only. For that I just have a git repository and use stow/make to symlink those into place or use a custom hm module that merges the settings I care about into the correct file.
I guess maybe the stow/make combination qualifies as a basic dotfile manager…
But what OP was talking about was not using hm at all and use a dotfile manager instead. I’m still super curious as to what use cases are better addressed by that.
If my config files are older than the NixOS module system per se, and substantial parts of them might outlive it, but I want a bit of templating support — it is obviously more natural to put it into something like chezmoi than to figure out how home-manager calls things in this decade.
(I just have my own templating scripts for the few cases where symlinks to repositories and includes from a FUSE access point to password manager are not enough)
well, I dont think there are a “few” applications where the configuration needs to be RW, but a lot of them, especially GUI ones.
there is also the issue of not wanting to keep everything in the store … where its public and RO. And I am not talking about passwords and secrets, but also things like bookmarks, etc.
There is also impermanence , which even has a “stow like mode”.
Home Manager and Impermanence should cover the functionality of a dotfiles manager.
My reservations about home-manager are somewhat related to indecision. Each time I start looking into it, I run into questions like:
- do I want a standalone installation, or a nixos module?
- should I use a flake?
- should I convert my entire nixos config to a flake first?
I keep going back to my hacky home-grown scripts (which use Stow under the hood).
When I learned about chezmoi, I was struck by some similarities with the pass
password manager, in terms of its interface and some of its Git underpinnings. I’m not sure it handles any particular use-cases better than home-manager, but it certainly seems better than my current Stow-based solution and it’s something I could migrate to pretty easily.
I made the transition to HM slowly over time. I’d used dotbot for a few years. I started by creating a standalone setup with a flake, then created a home manager activation script that would call dotbot for me. After that I used home manager to do all my switching, though could still technically run dotbot by hand (or chezmoi).
Over time I slowly converted more and more things to be managed through nix. Eventually I had dotbot pared down to just those apps I wanted to keep symlinking for whatever reason. Finally I converted all those to use mkOutOfStoreSymlink so that I could eliminate dotbot completely.
I recently switched to Nixos and don’t know yet HM so much. I use chezmoi to manage .dotfiles and some external tools (binaries from github, source repos), mainly also cause I also use systems which are not NIxos.