misc_nixos-mailserver/nixops/single-server.nix

12 lines
163 B
Nix
Raw Normal View History

2017-08-11 12:06:54 +00:00
{
network.description = "mail server";
mailserver =
{ config, pkgs, ... }:
{
imports = [
./../mail-config.nix
];
};
}