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:
Raphael 2025-08-24 18:36:19 +02:00
parent 78ef729197
commit 4d38f03718
4 changed files with 55 additions and 1 deletions

View file

@ -7,11 +7,12 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
simple-nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
minecraft.url = "github:Infinidoge/nix-minecraft";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, flake-utils, ... }@inputs:
outputs = { self, nixpkgs, flake-utils, simple-nixos-mailserver, ... }@inputs:
let
pkgs = import nixpkgs {
config.allowUnfree = true;
@ -31,6 +32,7 @@
system = "x86_64-linux";
modules = [
./hosts/server/configuration.nix
simple-nixos-mailserver.nixosModule
];
specialArgs = {
inherit inputs;