MyNixOS website logo

A set of git repositories to watch for. See gitwatch for more.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
{
  disabled-repo = {
    branch = "autobranch";
    enable = false;
    path = "/home/user/disabled-project";
    remote = "[email protected]:me/my-old-project.git";
    user = "user";
  };
  my-repo = {
    enable = true;
    path = "/home/user/watched-project";
    remote = "[email protected]:me/my-project.git";
    user = "user";
  };
}