mailnix/mailsystem/kresd.nix

11 lines
138 B
Nix

{
config,
lib,
...
}: let
cfg = config.mailsystem;
in {
config = lib.mkIf cfg.enable {
services.kresd.enable = true;
};
}