summaryrefslogtreecommitdiffstats
path: root/nixops/single-server.nix
blob: a6aa831ea69a430e825f550850b2ceda2cb0b7b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  network.description = "mail server";

  mailserver =
    { config, pkgs, ... }:
    {
        imports = [
            ./../mail-config.nix
        ];
    };
}