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