mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
unison: fix option example
Pairs are named attribute sets. One level was missing. Fixes #2662
This commit is contained in:
parent
f206f94ac5
commit
990ca662c4
1 changed files with 6 additions and 4 deletions
|
@ -80,10 +80,12 @@ in {
|
|||
default = { };
|
||||
example = literalExpression ''
|
||||
{
|
||||
roots = [
|
||||
"/home/user/documents"
|
||||
"ssh://remote/documents"
|
||||
];
|
||||
"my-documents" = {
|
||||
roots = [
|
||||
"/home/user/documents"
|
||||
"ssh://remote/documents"
|
||||
];
|
||||
};
|
||||
}
|
||||
'';
|
||||
description = ''
|
||||
|
|
Loading…
Reference in a new issue