16 lines
253 B
Nix
16 lines
253 B
Nix
{
|
|
network.description = "mail server";
|
|
|
|
mailserver =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./../default.nix
|
|
];
|
|
|
|
mailserver = {
|
|
enable = true;
|
|
domain = "example.com";
|
|
};
|
|
};
|
|
}
|