push
This commit is contained in:
20
modules/services/gitea.nix
Normal file
20
modules/services/gitea.nix
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
den.aspects.gitea = {
|
||||||
|
nixos = {
|
||||||
|
services.gitea = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
database = {
|
||||||
|
type = "sqlite3";
|
||||||
|
path = "/var/lib/gitea/gitea.db";
|
||||||
|
};
|
||||||
|
|
||||||
|
server = {
|
||||||
|
domain = "example.com";
|
||||||
|
httpPort = 3000;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user