nixos-mailserver/nixops/single-server.nix

17 lines
253 B
Nix
Raw Normal View History

2017-08-11 17:06:54 +05:00
{
network.description = "mail server";
mailserver =
{ config, pkgs, ... }:
{
imports = [
2017-09-02 15:58:25 +05:00
./../default.nix
2017-08-11 17:06:54 +05:00
];
2017-09-02 15:58:25 +05:00
mailserver = {
enable = true;
domain = "example.com";
};
2017-08-11 17:06:54 +05:00
};
}