nixos-config/modules/system/services/server/mailserver/default.nix

10 lines
161 B
Nix
Raw Permalink Normal View History

2024-12-27 18:47:07 -05:00
{ lib, ... }:
2024-10-09 03:36:08 -04:00
{
2025-01-21 12:02:11 -05:00
options.system.mailserver.enable = lib.mkEnableOption "Enable Simple NixOS Mailserver";
2024-11-13 09:43:47 -05:00
imports = [
./simplenix
./roundcube
];
2024-08-24 22:16:51 -04:00
}