Skip to content
This repository has been archived by the owner on Jun 29, 2018. It is now read-only.

Quick Start

Robin Raymond edited this page Feb 28, 2018 · 1 revision
{ config, pkgs, ... }:
{
  imports = [
    (builtins.fetchTarball "https://github.com/r-raymond/nixos-mailserver/archive/v2.1.3.tar.gz")
  ];

  mailserver = {
    enable = true;
    fqdn = "mail.example.com";
    domains = [ "example.com" "example2.com" ];
    loginAccounts = {
        "[email protected]" = {
            hashedPassword = "$6$/z4n8AQl6K$kiOkBTWlZfBd7PvF5GsJ8PmPgdZsFGN1jPGZufxxr60PoR0oUsrvzm2oQiflyz5ir9fFJ.d/zKm/NgLXNUsNX/";

            aliases = [
                "[email protected]"
                "[email protected]"
                "[email protected]"
            ];
        };
    };
  };
}
Clone this wiki locally