organize packages

This commit is contained in:
4DBug
2026-03-03 12:08:01 -06:00
parent 60805bcace
commit a21805e59b
42 changed files with 320 additions and 266 deletions

View File

@@ -0,0 +1,39 @@
{ den, ... }: {
den.aspects.gitea = {
includes = [ den.aspects.gitea-mirrors ];
nixos = {
services.gitea = {
enable = true;
database.type = "mysql";
settings.service = {
DISABLE_REGISTRATION = true;
};
settings.server.HTTP_PORT = 3002;
mirrors = {
admin = {
user = "admin";
email = "admin@bug.tools";
};
repos = [
{ owner = "gmodena"; repo = "nix-flatpak"; service = "github"; }
{ owner = "FlameFlag"; repo = "nixcord"; service = "github"; }
{ owner = "jacob.eva"; repo = "opencom-lte"; source = "https://git.liberatedsystems.co.uk/jacob.eva/opencom-lte.git"; }
];
users = [
{ owner = "nix-community"; platform = "github"; }
{ owner = "catppuccin"; platform = "github"; }
{ owner = "picosh"; platform = "github"; }
{ owner = "vic"; platform = "github"; }
];
};
};
};
};
}