13 lines
254 B
Nix
13 lines
254 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config.services.git-sync = {
|
|
enable = true;
|
|
repositories = {
|
|
"org" = {
|
|
path = "${config.home.homeDirectory}/org";
|
|
uri = "git+ssh://gitea@git.failco.de:jakalx/org.git";
|
|
};
|
|
};
|
|
};
|
|
}
|