1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +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 = { };
example = literalExpression ''
{
roots = [
"/home/user/documents"
"ssh://remote/documents"
];
"my-documents" = {
roots = [
"/home/user/documents"
"ssh://remote/documents"
];
};
}
'';
description = ''