Hey so i wanna setup email on nixos but all i find are tutorials on creating mail-servers, i dont want that. just wanna setup mail accounts using sops to hide passwords and everything. i tried writing this so far
mail.nix
{ lib, config, pkgs, ... }:
{
options.modules.communication.mail = {
enable = lib.mkEnableOption "enable mail module";
};
config = lib.mkIf (
config.modules.communication.enable &&
config.modules.communication.mail.enable
) {
environment.systemPacakges = [ pkgs.neomutt ];
};
}
im clueles about most tings regarding mail, i read somethings like notmuch
and nsync
on other repos not sure if i should add those.