dotfiles/nix/home-manager/modules/services/git-sync.nix

12 lines
272 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";
};
};
};
}