diff options
author | Leonardo Santiago <[email protected]> | 2024-10-13 15:52:57 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-10-13 15:52:57 -0300 |
commit | 01b442dee4d7d3d2b404a17d0e9adeb66593a54b (patch) | |
tree | e2194482ed3d49a05c72a949a63215f1aa1c06cb | |
parent | 0e43cf2ab2d5e7643ce9bca30ba649800465bcb9 (diff) |
small fixes
-rw-r--r-- | flake.lock | 8 | ||||
-rw-r--r-- | hosts/larissa.nix | 1 | ||||
-rw-r--r-- | modules/emacs/README.org | 13 |
3 files changed, 9 insertions, 13 deletions
@@ -159,11 +159,11 @@ "nixpkgs_old": "nixpkgs_old" }, "locked": { - "lastModified": 1727782603, - "narHash": "sha256-UmewZwqbKUNMDnm+llE5dftOIUr/nsjXZTYYkoOXYqc=", + "lastModified": 1728750572, + "narHash": "sha256-38bTh612z3fj7BWYLRsOtSny/7OPG4VQYrK0sXE2fng=", "ref": "refs/heads/master", - "rev": "fbe08b1c26cabc5a5816bf0d44623588205ec287", - "revCount": 66077, + "rev": "28fc43eac6233d68f183677f1b68aaa7aa80f568", + "revCount": 66566, "type": "git", "url": "ssh://[email protected]/mixrank/mixrank" }, diff --git a/hosts/larissa.nix b/hosts/larissa.nix index ca41367..b400f53 100644 --- a/hosts/larissa.nix +++ b/hosts/larissa.nix @@ -39,6 +39,7 @@ power-profiles-daemon.enable = lib.mkDefault true; touchegg.enable = true; fwupd.enable = true; + xserver.videoDrivers = [ "amdgpu" ]; libinput = { enable = true; touchpad = { diff --git a/modules/emacs/README.org b/modules/emacs/README.org index 6e9798f..29b44b6 100644 --- a/modules/emacs/README.org +++ b/modules/emacs/README.org @@ -174,12 +174,6 @@ Better help defaults (use-package which-key :config (which-key-mode)) #+end_src -** Windows -I wanna test out =winner-mode= -#+begin_src emacs-lisp :tangle yes -(use-package winner - :config (winner-mode)) -#+end_src ** Bind key #+begin_src emacs-lisp :tangle yes (use-package bind-key) @@ -215,7 +209,8 @@ Completion popup system Add support for ansi escape codes in compilation #+begin_src emacs-lisp :tangle yes (use-package ansi-color - :hook (compilation-filter . ansi-color-compilation-filter)) + :ensure nil + :hook (compilation-filter . ansi-color-compilation-filter)) #+end_src ** Pdf reader @@ -396,8 +391,8 @@ Actual mu4e definition :custom (read-mail-command 'mu4e) (mu4e-sent-messages-behavior 'delete) - (mu4e-index-cleanup nil) - (mu4e-index-lazy-check t) + (mu4e-index-cleanup t) + (mu4e-index-lazy-check nil) (mu4e-use-fancy-chars (display-graphic-p)) (mu4e-confirm-quit nil) (mu4e-eldoc-support t) |