More emails and fixed mouse natural scroll

This commit is contained in:
Random936 2024-06-04 20:06:21 -07:00
parent b77f0d436c
commit c7b487ce0b
2 changed files with 2 additions and 2 deletions

View File

@ -91,6 +91,7 @@ From here, I can continue onto configuring the ~mu4e~ emacs package.
((member (car (mu4e-string-to-flags "T")) (mu4e-message-field msg :flags)) "/Trash")
;; UCSC
((mu4e-message-contact-field-matches msg :bcc "undergrad@ucsc.edu") "/UCSC")
((mu4e-message-contact-field-matches msg :from "noreply@YuJa.com") "/UCSC")
((mu4e-message-contact-field-matches msg :from "no-reply@piazza.com") "/UCSC")
((mu4e-message-contact-field-matches msg :from "notifications@instructure.com") "/UCSC")

View File

@ -33,13 +33,12 @@
nix.package = pkgs.nix;
# Keyboard and Mouse
system.defaults.NSGlobalDomain."com.apple.swipescrolldirection" = true;
system.keyboard = {
enableKeyMapping = true;
remapCapsLockToEscape = true;
};
system.defaults.NSGlobalDomain."com.apple.swipescrolldirection" = true;
# Create /etc/zshrc that loads the nix-darwin environment.
programs.zsh.enable = true;