fonts, email
This commit is contained in:
parent
2ef817e370
commit
02fc28ca3e
5 changed files with 55 additions and 19 deletions
12
flake.lock
generated
12
flake.lock
generated
|
|
@ -23,11 +23,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1719707984,
|
||||
"narHash": "sha256-RoxIr/fbndtuKqulGvNCcuzC6KdAib85Q8gXnjzA1dw=",
|
||||
"lastModified": 1719956923,
|
||||
"narHash": "sha256-nNJHJ9kfPdzYsCOlHOnbiiyKjZUW5sWbwx3cakg3/C4=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "7dca15289a1c2990efbe4680f0923ce14139b042",
|
||||
"rev": "706eef542dec88cc0ed25b9075d3037564b2d164",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -39,11 +39,11 @@
|
|||
},
|
||||
"nur": {
|
||||
"locked": {
|
||||
"lastModified": 1719865591,
|
||||
"narHash": "sha256-Fq9KxLJjrHGXtCX1rylzW5Ls65fo4Rgl8f2Kqv5Gpo8=",
|
||||
"lastModified": 1720035920,
|
||||
"narHash": "sha256-htNiIHtfg/ss8oPLB/5ACY9s0yEWYVPg2qqPJAoq8lE=",
|
||||
"owner": "nix-community",
|
||||
"repo": "nur",
|
||||
"rev": "c3b0c669d39c3e03dbfba8c008487b5d2d62657d",
|
||||
"rev": "0c95cf8dfaf56dcd02edd2a22c209e16c9b7782e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,29 @@
|
|||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
anonymousPro
|
||||
cantarell-fonts
|
||||
charis-sil
|
||||
cm_unicode
|
||||
corefonts
|
||||
dejavu_fonts
|
||||
dotcolon-fonts
|
||||
freefont_ttf
|
||||
gyre-fonts
|
||||
hubot-sans
|
||||
liberation_ttf
|
||||
libertine
|
||||
libertinus
|
||||
mona-sans
|
||||
monaspace
|
||||
noto-fonts
|
||||
open-sans
|
||||
poppins
|
||||
roboto
|
||||
rubik
|
||||
source-sans-pro
|
||||
stix-two
|
||||
textfonts
|
||||
tlwg
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ macro index,pager gj "<change-folder>$my_junk<enter><refresh>" "Go to ju
|
|||
macro index,pager gu "<change-folder>~/.local/share/mail/gu/Inbox<enter><refresh>" "Go to GU"
|
||||
# macro index,pager gp "<change-folder>+systemli/IMAP/Inbox<enter><refresh>" "Go to Systemli"
|
||||
# macro index,pager gm "<change-folder>+gmail/IMAP/Inbox<enter><refresh>" "Go to Gmail"
|
||||
macro index,pager gk "<change-folder>~/.local/share/mail/ks/Inbox<enter><refresh>" "Go to KS"
|
||||
macro index,pager gk "<change-folder>~/.local/share/mail/ksh/Inbox<enter><refresh>" "Go to KSH"
|
||||
macro index,pager gi "<change-folder>~/.local/share/mail/ktiu/Inbox<enter><refresh>" "Go to ktiu"
|
||||
# macro index,pager gf "<change-folder>~/.local/share/mail/dkg/Inbox<enter><refresh>" "Go to DKG"
|
||||
|
||||
|
|
|
|||
|
|
@ -126,28 +126,29 @@
|
|||
};
|
||||
passwordCommand = "secret-tool lookup server shorbut.ktiu.net account till";
|
||||
};
|
||||
ks = {
|
||||
address = "kein_schlussstrich_hessen@gmx.de";
|
||||
ksh = {
|
||||
address = "kein_schlussstrich_hessen@systemli.org";
|
||||
realName = "Kein Schlussstrich Hessen";
|
||||
imap.host = "imap.gmx.net";
|
||||
smtp.host = "mail.gmx.net";
|
||||
imap.host = "mail.systemli.org";
|
||||
smtp.host = "mail.systemli.org";
|
||||
smtp.tls.useStartTls = true;
|
||||
notmuch.enable = true;
|
||||
userName = "kein_schlussstrich_hessen@gmx.de";
|
||||
userName = "kein_schlussstrich_hessen@systemli.org";
|
||||
signature.text = ''
|
||||
Kein Schlussstrich Hessen
|
||||
PGP Key: https://keys.openpgp.org/search?q=kein_schlussstrich_hessen@systemli.org
|
||||
'';
|
||||
signature.showSignature = "append";
|
||||
neomutt = {
|
||||
enable = true;
|
||||
sendMailCommand = "/home/till/.nix-profile/bin/msmtp";
|
||||
extraConfig = ''
|
||||
set my_mbsync_acct='ks'
|
||||
set mbox='+Archives'
|
||||
set my_mbsync_acct='ksh'
|
||||
set mbox='+Erledigt'
|
||||
set my_junk='+Junk'
|
||||
set postponed='+Entw&APw-rfe'
|
||||
set postponed='+Drafts'
|
||||
set record='+Gesendet'
|
||||
set trash='+Gel&APY-scht'
|
||||
set trash='+Trash'
|
||||
set crypt_auto_pgp
|
||||
unset crypt_auto_smime
|
||||
|
||||
|
|
@ -156,17 +157,18 @@
|
|||
set my_signature = ${
|
||||
pkgs.writeText
|
||||
"signature.txt"
|
||||
config.accounts.email.accounts.ks.signature.text
|
||||
config.accounts.email.accounts.ksh.signature.text
|
||||
}
|
||||
color status cyan default
|
||||
'';
|
||||
};
|
||||
mbsync.enable = true;
|
||||
mbsync.create = "maildir";
|
||||
msmtp = {
|
||||
enable = true;
|
||||
extraConfig.from = "kein_schlussstrich_hessen@gmx.de";
|
||||
extraConfig.from = "kein_schlussstrich_hessen@systemli.org";
|
||||
};
|
||||
passwordCommand = "secret-tool lookup server mail.gmx.de account kein_schlussstrich_hessen";
|
||||
passwordCommand = "secret-tool lookup server mail.systemli.org account kein_schlussstrich_hessen@systemli.org";
|
||||
};
|
||||
# dkg = {
|
||||
# address = "kontakt@dkg2023.de";
|
||||
|
|
|
|||
12
texput.log
Normal file
12
texput.log
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
This is TeXk, Version 3.141592653 (TeX Live 2023/nixos.org) (preloaded format=tex 1980.1.1) 1 JUL 2024 23:30
|
||||
restricted \write18 enabled.
|
||||
%&-line parsing enabled.
|
||||
**&tex
|
||||
|
||||
*
|
||||
! Emergency stop.
|
||||
<*>
|
||||
|
||||
End of file on the terminal!
|
||||
|
||||
No pages of output.
|
||||
Loading…
Add table
Add a link
Reference in a new issue