1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-22 19:19:45 +01:00

git-sync: add example to repository option

This commit is contained in:
RedEtherbloom 2024-10-31 22:22:16 +01:00 committed by Robert Helgesson
parent cd21d2e61b
commit 3c044aefe6
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -112,6 +112,15 @@ in {
description = ''
The repositories that should be synchronized.
'';
example = literalExpression ''
{
xyz = {
path = "''${config.home.homeDirectory}/foo/home-manager";
uri = "git@github.com:nix-community/home-manager.git";
interval = 1000;
};
}
'';
};
};
};