nixos-mailserver/nixops/single-server.nix

17 lines
253 B
Nix
Raw Normal View History

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