Updated system with fixes

This commit is contained in:
Emmet 2023-12-21 20:26:08 -06:00
parent 67f465eaf7
commit bbb51e0286
9 changed files with 83 additions and 49 deletions

View file

@ -1465,7 +1465,7 @@ I don't have this active right now since it's kinda weird with pgtk...
** mu4e Configuration
#+BEGIN_SRC emacs-lisp :tangle config.el
;;;------ helpful configuration ------;;;
(add-load-path! "~/.nix-profile/share/emacs/site-lisp/elpa/mu4e-1.10.8")
(add-load-path! "~/.nix-profile/share/emacs/site-lisp/elpa/mu4e-1.10.7")
(require 'mu4e)
(require 'mu4e-contrib)
(require 'mu4e-actions)
@ -1650,7 +1650,7 @@ EAF doesn't work on Wayland :(
#+BEGIN_SRC emacs-lisp :tangle config.el
;;;-- projectile wrapper commands ;;;--
(require 'sudo-edit)
(setq sudo-edit-local-method "doas")
(setq sudo-edit-local-method "su")
(map! :leader
:desc "Open current file as root"
@ -2051,6 +2051,23 @@ in
]))
];
nixpkgs.overlays = [
(self: super:
{
mu = super.mu.overrideAttrs (oldAttrs: rec {
pname = "mu";
version = "1.10.7";
src = super.fetchFromGitHub {
owner = "djcb";
repo = "mu";
rev = "v1.10.7";
hash = "sha256-x1TsyTOK5U6/Y3QInm+XQ7T32X49iwa+4UnaHdiyqCI=";
};
});
}
)
];
services.mbsync = {
enable = true;
package = pkgs.isync;