dotfiles/nix/home-manager/modules/services/git-sync.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";
};
};
};
}