Files
dotfiles/nix-darwin/home/ivan.nix

25 lines
522 B
Nix
Raw Normal View History

2026-04-26 14:24:40 -07:00
{
config,
pkgs,
...
}: {
services.git-sync = {
enable = true;
package =
if pkgs ? "git-sync-rs"
then pkgs."git-sync-rs"
else pkgs.git-sync;
repositories = {
org = {
2026-04-26 14:24:40 -07:00
path = "${config.home.homeDirectory}/org";
uri = "git@github.com:colonelpanic8/org.git";
interval = 180;
};
password-store = {
2026-04-26 14:24:40 -07:00
path = "${config.home.homeDirectory}/.password-store";
uri = "git@github.com:IvanMalison/.password-store.git";
};
};
};
}