10 lines
161 B
Nix
10 lines
161 B
Nix
{ lib, ... }:
|
|
{
|
|
options.system.mailserver.enable = lib.mkEnableOption "Enable Simple NixOS Mailserver";
|
|
|
|
imports = [
|
|
./simplenix
|
|
./roundcube
|
|
];
|
|
}
|