gitea mirrors

This commit is contained in:
4DBug
2026-03-03 02:05:08 -06:00
parent 500168950f
commit a117ed02a2
5 changed files with 222 additions and 6 deletions

View File

@@ -1,5 +1,7 @@
{
{ den, ... }: {
den.aspects.gitea = {
includes = [ den.aspects.gitea-mirrors ];
nixos = {
services.gitea = {
enable = true;
@@ -11,6 +13,23 @@
};
settings.server.HTTP_PORT = 3002;
mirrors = {
adminUser = "admin";
adminEmail = "admin@bug.tools";
repos = [
{ owner = "gmodena"; repo = "nix-flatpak"; source = "https://github.com/gmodena/nix-flatpak.git"; service = "github"; }
{ owner = "FlameFlag"; repo = "nixcord"; source = "https://github.com/FlameFlag/nixcord.git"; service = "github"; }
{ owner = "jacob.eva"; repo = "opencom-lte"; source = "https://git.liberatedsystems.co.uk/jacob.eva/opencom-lte.git"; }
];
users = [
{ owner = "catppuccin"; platform = "github"; }
{ owner = "picosh"; platform = "github"; }
{ owner = "vic"; platform = "github"; }
];
};
};
};
};