From da621066c13e127b612ffe7f2e8cb48f8a215ff4 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 2 Jun 2024 10:51:27 +0200 Subject: [PATCH 1/4] feat(home): Add petry.alexander@gmail.com mail account --- home/alex/modules/email.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/alex/modules/email.nix b/home/alex/modules/email.nix index 7f558eb..8523b37 100644 --- a/home/alex/modules/email.nix +++ b/home/alex/modules/email.nix @@ -46,5 +46,9 @@ in imap.host = "thrall.failco.de"; smtp.host = "thrall.failco.de"; }; + + accounts.google = mkAccount "petry.alexander@gmail.com" // { + flavor = "gmail.com"; + }; }; } From 6505df5d8a3b5dd081b63797c0317e9921c03633 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 2 Jun 2024 10:52:10 +0200 Subject: [PATCH 2/4] feat(nix): Trust devenv cachix cache --- modules/nix-config.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/nix-config.nix b/modules/nix-config.nix index 13ffe16..80b1825 100644 --- a/modules/nix-config.nix +++ b/modules/nix-config.nix @@ -25,6 +25,13 @@ # avoid unwanted garbage collection when using direnv keep-outputs = true; keep-derivations = true; + + trusted-substituters = [ "https://devenv.cachix.org" ]; + trusted-public-keys = [ "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=" ]; + trusted-users = [ + "root" + "alex" + ]; }; }; } From de960b7cc9be5e3fc7751b745ed3d2a5b0bde449 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Tue, 11 Jun 2024 18:40:06 +0200 Subject: [PATCH 3/4] feat(xmonad): Switch hotkeys for shell and emacs scratchpads --- home/alex/programs/xmonad/config.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/alex/programs/xmonad/config.hs b/home/alex/programs/xmonad/config.hs index 9f42e56..832ab6c 100644 --- a/home/alex/programs/xmonad/config.hs +++ b/home/alex/programs/xmonad/config.hs @@ -121,8 +121,8 @@ myConfig = , ("M-C-r", WS.swapNextScreen) , ("M-S-r", WS.shiftNextScreen) , -- scratchpads - ("M-s M-s", namedScratchpadAction scratchpads "notes") - , ("M-s s", namedScratchpadAction scratchpads "shell") + ("M-s s", namedScratchpadAction scratchpads "notes") + , ("M-s M-s", namedScratchpadAction scratchpads "shell") , -- backlight control ("", spawn "xbacklight -dec 5") From 7fabd0d30b72d6c26e1e8da56b37a0b9700a271f Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 16 Jun 2024 20:59:18 +0200 Subject: [PATCH 4/4] feat(emacs): Allow magit to fetch with --force --- home/alex/programs/emacs/doom/config.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/alex/programs/emacs/doom/config.el b/home/alex/programs/emacs/doom/config.el index 32c66a5..ebc1887 100644 --- a/home/alex/programs/emacs/doom/config.el +++ b/home/alex/programs/emacs/doom/config.el @@ -147,6 +147,11 @@ ;; include *Code-Review* buffer into current workspace (persp-add-buffer (current-buffer)))))) +(after! magit + (transient-append-suffix 'magit-fetch "-t" + '("-f" "Bypass safety checks" "--force")) + ) + (setq ak/bibliography (list (concat org-directory "references.bib"))) ;; (setq org-cite-global-bibliography (list (concat org-directory "references.bib"))) (setq! bibtex-completion-bibliography ak/bibliography)