mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-14 12:58:34 +05:00
12 lines
163 B
Nix
12 lines
163 B
Nix
{
|
|
network.description = "mail server";
|
|
|
|
mailserver =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./../mail-config.nix
|
|
];
|
|
};
|
|
}
|