13 lines
176 B
Nix
13 lines
176 B
Nix
{ lib, ... }:
|
|
{
|
|
options.system.mailserver.enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
};
|
|
|
|
imports = [
|
|
./simplenix
|
|
./roundcube
|
|
];
|
|
}
|