16 lines
243 B
Nix
16 lines
243 B
Nix
{ ... }:
|
|
{
|
|
options.system.mailserver = {
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Enable mail host and services";
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./simplenix
|
|
./roundcube
|
|
];
|
|
}
|