Skip to content

Latest commit

 

History

History
117 lines (81 loc) · 6.62 KB

FAQ.md

File metadata and controls

117 lines (81 loc) · 6.62 KB

chezmoi Frequently Asked Questions

How can I quickly check for problems with chezmoi on my machine?

Run:

chezmoi doctor

Anything ok is fine, anything warning is only a problem if you want to use the related feature, and anything error indicates a definite problem.

What are the consequences of "bare" modifications to the target files? If my .zshrc is managed by chezmoi and I edit ~/.zshrc without using chezmoi edit, what happens?

chezmoi will overwrite the file the next time you run chezmoi apply. Until you run chezmoi apply your modified ~/.zshrc will remain in place.

How can I tell what dotfiles in my home directory aren't managed by chezmoi? Is there an easy way to have chezmoi manage a subset of them?

chezmoi unmanaged will list everything not managed by chezmoi. You can add entire directories with chezmoi add -r.

If there's a mechanism in place for the above, is there also a way to tell chezmoi to ignore specific files or groups of files (e.g. by directory name or by glob)?

By default, chezmoi ignores everything that you haven't explicitly chezmoi added. If have files in your source directory that you don't want added to your destination directory when you run chezmoi apply add them to a .chezmoiignore file (which supports globs and is also a template).

If the target already exists, but is "behind" the source, can chezmoi be configured to preserve the target version before replacing it with one derived from the source?

Yes. Run chezmoi add will update the source state with the target. To see diffs of what would change, without actually changing anything, use chezmoi diff.

I've made changes to both the destination state and the source state that I want to keep. How can I keep them both?

chezmoi merge will open a merge tool to resolve differences between the source state, target state, and destination state. Copy the changes you want to keep in to the source state.

How do I tell chezmoi to always delete a file?

chezmoi will delete files if their target state is empty, unless they have the empty attribute set. Therefore an empty file in the source state without the empty attribute will always be deleted.

Say you want chezmoi to always delete ~/.foo, you can use the following sequence of commands:

rm -f ~/.foo
touch ~/.foo
chezmoi add --empty ~/.foo
chezmoi chattr noempty ~/.foo

When you next run chezmoi apply, ~/.foo will be deleted.

gpg encryption fails. What could be wrong?

The gpgRecipient key should be ultimately trusted, otherwise encryption will fail because gpg will prompt for input, which chezmoi does not handle. You can check the trust level by running:

gpg --export-ownertrust

The trust level for the recipient's key should be 6. If it is not, you can change the trust level by running:

gpg --edit-key $gpgRecipient

Enter trust at the prompt and chose 5 = I trust ultimately.

What inspired chezmoi?

chezmoi was inspired by Puppet, but created because Puppet is a slow overkill for managing your personal configuration files. The focus of chezmoi will always be personal home directory management. If your needs grow beyond that, switch to a whole system configuration management tool.

Can I use chezmoi outside my home directory?

chezmoi, by default, operates on your home directory, but this can be overridden with the --destination command line flag or by specifying destDir in your config file. In theory, you could use chezmoi to manage any aspect of your filesystem. That said, although you can do this, you probably shouldn't. Existing configuration management tools like Puppet, Chef, Ansible, and Salt are much better suited to whole system configuration management.

Where does the name "chezmoi" come from?

"chezmoi" splits to "chez moi" and pronouced /ʃeɪ mwa/ (shay-moi) meaning "at my house" in French. It's seven letters long, which is an appropriate length for a command that is only run occasionally.

What other questions have been asked about chezmoi?

See the issues on Github.

Where do I ask a question that isn't answered here?

Please open an issue on Github.