thunderbird
This commit is contained in:
@@ -1,12 +1,21 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
let
|
||||
theme = builtins.fetchurl {
|
||||
url =
|
||||
"https://github.com/catppuccin/alacritty/ raw/main/catppuccin-mocha.toml";
|
||||
sha256 = "061yalrzpqivr67k2f8hsqixr77srgd8y47xvhp5vg0sjmh5lrcy";
|
||||
};
|
||||
in {
|
||||
home.packages = with pkgs; [ fira-code alacritty-theme ];
|
||||
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
env = { "TERM" = "xterm-256color"; };
|
||||
env = {
|
||||
"TERM" = "xterm-256color";
|
||||
import = "${theme}";
|
||||
};
|
||||
font = {
|
||||
size = 9;
|
||||
normal.family = "Fira Code";
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
./rofi
|
||||
./signal.nix
|
||||
./telegram.nix
|
||||
./thunderbird
|
||||
./wallpaper.nix
|
||||
./xmonad
|
||||
./zathura.nix
|
||||
|
||||
56
home/programs/thunderbird/default.nix
Normal file
56
home/programs/thunderbird/default.nix
Normal file
@@ -0,0 +1,56 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
#programs.thunderbird = true;
|
||||
accounts.email = {
|
||||
accounts = {
|
||||
kjr = {
|
||||
address = "elias.schroeter@kjr-ebe.de";
|
||||
realName = "Elias Schröter";
|
||||
signature = {
|
||||
text = ''
|
||||
Mit freundlichen Grüßen,
|
||||
Elias Schröter.
|
||||
'';
|
||||
showSignature = "append";
|
||||
};
|
||||
passwordCommand = "mail-password";
|
||||
userName = "elias.schroeter@kjr-ebe.de";
|
||||
thunderbird = { enable = true; };
|
||||
};
|
||||
privat = {
|
||||
address = "elias.schroeter@e.email";
|
||||
gpg = {
|
||||
key = "0x99D2EF975FE523CC";
|
||||
signByDefault = true;
|
||||
};
|
||||
aliases = [ "eliasschrei@gmail.com" "elias.schroeter1601@gmail.com" ];
|
||||
imap = {
|
||||
host = "mail.ecloud.global";
|
||||
port = 993;
|
||||
tls.enable = true;
|
||||
};
|
||||
realName = "Elias Schröter";
|
||||
signature = {
|
||||
text = ''
|
||||
Mit freundlichen Grüßen,
|
||||
Elias Schröter.
|
||||
'';
|
||||
showSignature = "append";
|
||||
};
|
||||
passwordCommand = "mail-password";
|
||||
smtp = {
|
||||
host = "mail.ecloud.global";
|
||||
port = 587;
|
||||
};
|
||||
userName = "elias.schroeter@e.email";
|
||||
primary = true;
|
||||
tls = {
|
||||
enable = true;
|
||||
useStartTls = true;
|
||||
};
|
||||
thunderbird = { enable = true; };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -48,6 +48,7 @@ myXmobarPP = def
|
||||
ppSep = pink " • "
|
||||
, ppWsSep = ""
|
||||
, ppCurrent = wrap " " "" . xmobarBorder "Top" "#f38ba8" 2
|
||||
, ppVisible = wrap " " "" . xmobarBorder "Top" "#a6e3a1" 2
|
||||
, ppHidden = green . wrap " " ""
|
||||
, ppHiddenNoWindows = gray . wrap " " ""
|
||||
, ppUrgent = red . wrap (yellow "!") (yellow "!")
|
||||
|
||||
Reference in New Issue
Block a user