2023-08-20 02:54:19 -06:00
|
|
|
{ ... }: {
|
|
|
|
home-manager.users.imalison = ({ config, ... }: {
|
|
|
|
services.git-sync = {
|
|
|
|
enable = true;
|
|
|
|
repositories = {
|
|
|
|
config = {
|
|
|
|
path = config.home.homeDirectory + "/config";
|
|
|
|
uri = "git@github.com:IvanMalison/config.git";
|
|
|
|
};
|
|
|
|
org = {
|
|
|
|
path = config.home.homeDirectory + "/org";
|
|
|
|
uri = "git@github.com:IvanMalison/org.git";
|
2023-08-21 14:21:07 -06:00
|
|
|
interval = 180;
|
2023-08-20 02:54:19 -06:00
|
|
|
};
|
|
|
|
password-store = {
|
|
|
|
path = config.home.homeDirectory + "/.password-store";
|
|
|
|
uri = "git@github.com:IvanMalison/.password-store.git";
|
|
|
|
};
|
|
|
|
katnivan = {
|
|
|
|
path = config.home.homeDirectory + "/katnivan";
|
|
|
|
uri = "ssh://gitea@1896Folsom.duckdns.org:1123/colonelpanic/katnivan.git";
|
2023-08-27 06:46:17 -06:00
|
|
|
interval = 45;
|
2023-08-20 02:54:19 -06:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
home-manager.users.kat = ({ config, ... }: {
|
|
|
|
services.git-sync = {
|
|
|
|
enable = true;
|
|
|
|
repositories = {
|
|
|
|
obsidian = {
|
|
|
|
path = config.home.homeDirectory + "/obsidian";
|
|
|
|
uri = "git@github.com:katandtonic/obsidian.git";
|
|
|
|
};
|
|
|
|
org = {
|
|
|
|
path = config.home.homeDirectory + "/org";
|
|
|
|
uri = "ssh://gitea@1896Folsom.duckdns.org:1123/kkathuang/org.git";
|
2023-08-21 14:21:07 -06:00
|
|
|
interval = 180;
|
2023-08-20 02:54:19 -06:00
|
|
|
};
|
2023-08-20 04:25:58 -06:00
|
|
|
katnivan = {
|
|
|
|
path = config.home.homeDirectory + "/katnivan";
|
|
|
|
uri = "ssh://gitea@1896Folsom.duckdns.org:1123/colonelpanic/katnivan.git";
|
2023-08-21 15:11:56 -06:00
|
|
|
interval = 30;
|
2023-08-20 04:25:58 -06:00
|
|
|
};
|
2023-08-20 02:54:19 -06:00
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|