games-night/modules/comin.nix

14 lines
223 B
Nix
Raw Normal View History

{ ... }:
{
services.comin = {
enable = true;
remotes = [
{
name = "origin";
url = "https://code.c-base.org/lucy/games-night.git";
branches.main.name = "master";
}
];
};
}