nixos-config/home/alex/services/git-sync/default.nix

13 lines
252 B
Nix

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