mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
37 lines
928 B
Markdown
37 lines
928 B
Markdown
|
# Keeping your \~ safe from harm {#sec-usage-dotfiles}
|
||
|
|
||
|
To configure programs and services Home Manager must write various
|
||
|
things to your home directory. To prevent overwriting any existing files
|
||
|
when switching to a new generation, Home Manager will attempt to detect
|
||
|
collisions between existing files and generated files. If any such
|
||
|
collision is detected the activation will terminate before changing
|
||
|
anything on your computer.
|
||
|
|
||
|
For example, suppose you have a wonderful, painstakingly created
|
||
|
`~/.config/git/config` and add
|
||
|
|
||
|
``` nix
|
||
|
{
|
||
|
# …
|
||
|
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Jane Doe";
|
||
|
userEmail = "jane.doe@example.org";
|
||
|
};
|
||
|
|
||
|
# …
|
||
|
}
|
||
|
```
|
||
|
|
||
|
to your configuration. Attempting to switch to the generation will then
|
||
|
result in
|
||
|
|
||
|
``` console
|
||
|
$ home-manager switch
|
||
|
…
|
||
|
Activating checkLinkTargets
|
||
|
Existing file '/home/jdoe/.config/git/config' is in the way
|
||
|
Please move the above files and try again
|
||
|
```
|