NixOS-Config/modules/system/services/server/mailserver/default.nix

16 lines
243 B
Nix
Raw Normal View History

{ ... }:
2024-10-09 03:36:08 -04:00
{
2024-11-13 09:43:47 -05:00
options.system.mailserver = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable mail host and services";
};
};
imports = [
./simplenix
./roundcube
];
2024-08-24 22:16:51 -04:00
}