misc_nixos-mailserver/nixops/single-server.nix

17 lines
253 B
Nix
Raw Normal View History

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