1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00

unison: fix option example

Pairs are named attribute sets. One level was missing.

Fixes #2662
This commit is contained in:
pacien 2022-01-25 15:36:44 +01:00 committed by Robert Helgesson
parent f206f94ac5
commit 990ca662c4
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -80,10 +80,12 @@ in {
default = { }; default = { };
example = literalExpression '' example = literalExpression ''
{ {
roots = [ "my-documents" = {
"/home/user/documents" roots = [
"ssh://remote/documents" "/home/user/documents"
]; "ssh://remote/documents"
];
};
} }
''; '';
description = '' description = ''