dotfiles/nix/home-manager/modules/services/git-sync.nix
2024-05-03 16:01:48 -04:00

11 lines
205 B
Nix

{config, ...}: {
services.git-sync = {
enable = true;
repositories = {
"org-roam" = {
path = "${config.home.homeDirectory}/org-roam";
interval = 300;
};
};
};
}