mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
19 lines
462 B
Nix
19 lines
462 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
services.git-sync = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage { outPath = "@git-sync@"; };
|
||
|
repositories.test = {
|
||
|
path = "/a/path";
|
||
|
uri = "git+ssh://user@example.com:/~user/path/to/repo.git";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
serviceFile=LaunchAgents/org.nix-community.home.git-sync-test.plist
|
||
|
assertFileExists "$serviceFile"
|
||
|
assertFileContent "$serviceFile" ${./expected-agent.plist}
|
||
|
'';
|
||
|
}
|