New service: Forgejo
This commit is contained in:
parent
3947745bec
commit
0ba7940dba
8 changed files with 190 additions and 0 deletions
58
hosts/forgejo/default.nix
Normal file
58
hosts/forgejo/default.nix
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
p = import ../parameters.nix;
|
||||
in
|
||||
{
|
||||
|
||||
age.secrets.scaleway-password.file = ../../secrets/scaleway-password.age;
|
||||
|
||||
my = {
|
||||
utils = {
|
||||
commons.enable = true;
|
||||
lxc-standard.enable = true;
|
||||
};
|
||||
|
||||
services.forgejo = {
|
||||
enable = true;
|
||||
stateDir = "/mnt/git";
|
||||
proxy.domain = p.domains.public;
|
||||
secrets = {
|
||||
mailer.PASSWD = config.age.secrets.scaleway-password.path;
|
||||
};
|
||||
settings = {
|
||||
service = {
|
||||
DISABLE_REGISTRATION = true;
|
||||
};
|
||||
mailer = {
|
||||
ENABLED = true;
|
||||
PROTOCOL = "smtps";
|
||||
SMTP_ADDR = "smtp.tem.scaleway.com";
|
||||
SMTP_PORT = "465";
|
||||
USER = "5cbeeec0-9c3a-441a-9772-c11e9650fcd2";
|
||||
FROM = "git@${p.domains.public}";
|
||||
};
|
||||
oauth2_client = {
|
||||
USERNAME = "openid";
|
||||
ACCOUNT_LINKING = "auto";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
networking.nas-samba-share = {
|
||||
enable = true;
|
||||
allowUsers = [ config.services.forgejo.user ];
|
||||
};
|
||||
|
||||
virtualisation.proxmox.enable = true;
|
||||
};
|
||||
|
||||
# Extra packages
|
||||
environment.systemPackages = with pkgs; [ ];
|
||||
|
||||
system.stateVersion = "25.05";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue