mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Updated system with fixes
This commit is contained in:
parent
67f465eaf7
commit
bbb51e0286
9 changed files with 83 additions and 49 deletions
|
@ -1241,7 +1241,7 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
"q" 'helpful-kill-buffers)
|
||||
|
||||
;;;------ 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)
|
||||
|
@ -1385,7 +1385,7 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
|
|||
|
||||
;;;-- 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"
|
||||
|
|
|
@ -66,6 +66,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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -3,7 +3,7 @@ let
|
|||
myRetroarch =
|
||||
(pkgs.retroarch.override {
|
||||
cores = with pkgs.libretro; [
|
||||
mgba
|
||||
vba-m
|
||||
desmume
|
||||
dolphin
|
||||
citra
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue