services: add gitea
This commit is contained in:
parent
10aa3c6c9a
commit
98ff3c4dd8
|
@ -23,6 +23,7 @@ in
|
||||||
# Include service configuration
|
# Include service configuration
|
||||||
./services/archi.nix
|
./services/archi.nix
|
||||||
./services/caddy.nix
|
./services/caddy.nix
|
||||||
|
./services/gitea.nix
|
||||||
./services/jellyfin.nix
|
./services/jellyfin.nix
|
||||||
./services/minecraft
|
./services/minecraft
|
||||||
];
|
];
|
||||||
|
|
14
services/gitea.nix
Normal file
14
services/gitea.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
services.gitea = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
lfs.enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
server = {
|
||||||
|
HTTP_PORT = 3788;
|
||||||
|
ROOT_URL = "https://git.thewizard.link";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue