remove emails

This commit is contained in:
♥ Minnie ♥ 2024-10-02 22:48:10 +08:00
parent 038971e4bf
commit 7297d48f13
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 0 additions and 105 deletions

View file

@ -6,7 +6,6 @@
imports = [
./discord
./dunst
./email
./irc
./mpd
./picom

View file

@ -1,104 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [
# protonmail-bridge requires password manager
pass
# encrypt and decrypt our email messages
protonmail-bridge
];
accounts.email.accounts = {
primary = {
primary = true;
userName = "its.jassy@pm.me";
realName = "Jasmine Wilson";
address = "its.jassy@pm.me";
imap = {
host = "127.0.0.1";
port = 1143;
tls.useStartTls = true;
};
smtp = {
host = "127.0.0.1";
port = 1025;
tls.useStartTls = true;
};
thunderbird.enable = true;
};
torrents = {
userName = "its.kalopsia@pm.me";
realName = "Kalopsia";
address = "its.kalopsia@pm.me";
imap = {
host = "127.0.0.1";
port = 1143;
tls.useStartTls = true;
};
smtp = {
host = "127.0.0.1";
port = 1025;
tls.useStartTls = true;
};
thunderbird.enable = true;
};
sajkbd_primary = {
userName = "sajkbd@pm.me";
realName = "Sajenim";
address = "sajkbd@pm.me";
imap = {
host = "127.0.0.1";
port = 1143;
tls.useStartTls = true;
};
smtp = {
host = "127.0.0.1";
port = 1025;
tls.useStartTls = true;
};
thunderbird.enable = true;
};
sajkbd_support = {
userName = "support@sajkbd.io";
realName = "Sajenim";
address = "support@sajkbd.io";
imap = {
host = "127.0.0.1";
port = 1143;
tls.useStartTls = true;
};
smtp = {
host = "127.0.0.1";
port = 1025;
tls.useStartTls = true;
};
thunderbird.enable = true;
};
sajkbd_sales = {
userName = "sales@sajkbd.io";
realName = "Sajenim";
address = "sales@sajkbd.io";
imap = {
host = "127.0.0.1";
port = 1143;
tls.useStartTls = true;
};
smtp = {
host = "127.0.0.1";
port = 1025;
tls.useStartTls = true;
};
thunderbird.enable = true;
};
};
# Cross platform, decentralized, open-standard communication.
programs.thunderbird = {
enable = true;
profiles = {
proton.isDefault = true;
};
};
}