feat(home): Configure git-sync for ~/org

This commit is contained in:
Alexander Kobjolke 2024-03-14 22:27:57 +01:00
parent 4f62902ad5
commit 76af33cbed
2 changed files with 14 additions and 0 deletions

View file

@ -13,6 +13,7 @@
./services/screen-locker
./services/blueman-applet
./services/syncthing
./services/git-sync
];
home = {

View file

@ -0,0 +1,13 @@
{ config, lib, pkgs, ... }:
{
config.services.git-sync = {
enable = true;
repositories = {
"org" = {
path = "${config.home.homeDirectory}/org";
uri = "git+ssh://gitea@git.failco.de:jakalx/org.git";
};
};
};
}