🚀 fix email

This commit is contained in:
Moritz Böhme 2022-02-15 16:40:23 +01:00
parent a08c7f7785
commit 9aaba816a2
No known key found for this signature in database
GPG key ID: 213820E2795F5CF5
6 changed files with 97 additions and 8 deletions

View file

@ -9,8 +9,10 @@ in {
home-manager.users.moritz = {
home.sessionPath = [ "/home/moritz/.config/emacs/bin/" ];
services.emacs.enable = true;
services.emacs.package = emacs;
services.emacs = {
enable = true;
package = emacs;
};
home.packages = with pkgs; [
## Emacs itself
@ -60,6 +62,10 @@ in {
# :lang python
python-language-server
# :email
mu
isync
];
};
}