diff --git a/dotfiles/.emacs.d/email.org b/dotfiles/.emacs.d/email.org index b53c5f8..3fb80c7 100644 --- a/dotfiles/.emacs.d/email.org +++ b/dotfiles/.emacs.d/email.org @@ -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") diff --git a/nixos/darwin-configuration.nix b/nixos/darwin-configuration.nix index 3435b52..7ebd60d 100644 --- a/nixos/darwin-configuration.nix +++ b/nixos/darwin-configuration.nix @@ -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;