13 lines
274 B
Nix
13 lines
274 B
Nix
{ config, ... }:
|
|
{
|
|
services.git-sync = {
|
|
enable = true;
|
|
repositories = {
|
|
"org-roam" = {
|
|
path = "${config.home.homeDirectory}/org-roam";
|
|
interval = 300;
|
|
uri = "git@git.anthonycicchetti.com:anthonycicc/org-roam";
|
|
};
|
|
};
|
|
};
|
|
}
|