machines: porthos: services: set-up gitea mail
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
9b0cc37502
commit
cb068a42e9
|
@ -1,5 +1,5 @@
|
||||||
# Deployed services
|
# Deployed services
|
||||||
{ config, ... }:
|
{ config, lib, ... }:
|
||||||
let
|
let
|
||||||
secrets = config.age.secrets;
|
secrets = config.age.secrets;
|
||||||
in
|
in
|
||||||
|
@ -39,7 +39,15 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
# Gitea forge
|
# Gitea forge
|
||||||
gitea.enable = true;
|
gitea = {
|
||||||
|
enable = true;
|
||||||
|
mail = {
|
||||||
|
enable = true;
|
||||||
|
host = "smtp.migadu.com:465";
|
||||||
|
user = lib.my.mkMailAddress "gitea" "belanyi.fr";
|
||||||
|
passwordFile = secrets."gitea/mail-password".path;
|
||||||
|
};
|
||||||
|
};
|
||||||
# Meta-indexers
|
# Meta-indexers
|
||||||
indexers = {
|
indexers = {
|
||||||
prowlarr.enable = true;
|
prowlarr.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue