mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
2aeaf65e8f
Fixes #1807
26 lines
557 B
Nix
26 lines
557 B
Nix
{ ... }:
|
|
|
|
{
|
|
config = {
|
|
home.file = {
|
|
conflict1 = {
|
|
text = "";
|
|
target = "baz";
|
|
};
|
|
conflict2 = {
|
|
source = ./target-conflict.nix;
|
|
target = "baz";
|
|
};
|
|
};
|
|
|
|
test.asserts.assertions.expected = [''
|
|
Conflicting managed target files: baz
|
|
|
|
This may happen, for example, if you have a configuration similar to
|
|
|
|
home.file = {
|
|
conflict1 = { source = ./foo.nix; target = "baz"; };
|
|
conflict2 = { source = ./bar.nix; target = "baz"; };
|
|
}''];
|
|
};
|
|
}
|