feat(server/mail): adding mail configuration for enium mailing
- working but not with my current configuration... - have to see how to fix the issues with the freebox (not allowed to touch the port 25)
This commit is contained in:
parent
78ef729197
commit
4d38f03718
4 changed files with 55 additions and 1 deletions
|
|
@ -4,6 +4,9 @@ let
|
|||
htop = import ./self_host/htop.nix {
|
||||
inherit inputs config pkgs lib;
|
||||
};
|
||||
mail = import ./self_host/mail.nix {
|
||||
inherit inputs config pkgs lib;
|
||||
};
|
||||
monitor = import ./self_host/monitor.nix {
|
||||
inherit inputs config pkgs lib;
|
||||
};
|
||||
|
|
@ -21,6 +24,7 @@ in
|
|||
{
|
||||
imports = [
|
||||
nextcloud
|
||||
mail
|
||||
htop
|
||||
ollama
|
||||
teamspeak
|
||||
|
|
@ -48,6 +52,11 @@ in
|
|||
default = false;
|
||||
description = "Enable the ollama";
|
||||
};
|
||||
mail = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = "Enable the mail";
|
||||
};
|
||||
monitor = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue