mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-11 19:39:16 +05:00
17 lines
253 B
Nix
17 lines
253 B
Nix
{
|
|
network.description = "mail server";
|
|
|
|
mailserver =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./../default.nix
|
|
];
|
|
|
|
mailserver = {
|
|
enable = true;
|
|
domain = "example.com";
|
|
};
|
|
};
|
|
}
|