diff options
-rw-r--r-- | config.org | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/config.org b/config.org index 9ab69f8..c9011c7 100644 --- a/config.org +++ b/config.org | |||
@@ -1661,6 +1661,37 @@ I've just recently started (again) using mu4e. We'll see how it goes. | |||
1661 | 1661 | ||
1662 | #+end_src | 1662 | #+end_src |
1663 | 1663 | ||
1664 | ** KeePassXC integration | ||
1665 | |||
1666 | I use KeePassXC, and I'd /like/ to use KeePassXC to get passwords and stuff at home. So I'm trying this library out, since the secret-tool integration isn't built into the KeePassXC on Void. If this doesn't work, looks like I'll have to become a packager 😜 | ||
1667 | |||
1668 | #+begin_src emacs-lisp :noweb yes | ||
1669 | (when (eq system-type 'gnu/linux) | ||
1670 | <<use-package-sodium>> | ||
1671 | (use-package keepassxc | ||
1672 | :straight (keepassxc | ||
1673 | :host github | ||
1674 | :repo "dakra/keepassxc.el") | ||
1675 | :after (sodium))) | ||
1676 | #+end_src | ||
1677 | |||
1678 | *** libsodium integration | ||
1679 | |||
1680 | I had to manually run ~make~ in the repo this time around, for some reason. Should probably look into that ... when it's not 1:00 AM. | ||
1681 | |||
1682 | #+NAME: use-package-sodium | ||
1683 | #+begin_src emacs-lisp :tangle no | ||
1684 | (use-package sodium | ||
1685 | :straight (sodium | ||
1686 | :host github | ||
1687 | :repo "dakra/sodium.el" | ||
1688 | :build ("make")) | ||
1689 | :init | ||
1690 | (add-to-list 'load-path | ||
1691 | (expand-file-name "straight/repos/sodium.el" | ||
1692 | user-emacs-directory))) | ||
1693 | #+end_src | ||
1694 | |||
1664 | * Appendix A: Scripts | 1695 | * Appendix A: Scripts |
1665 | 1696 | ||
1666 | ** ~emacsdc~ | 1697 | ** ~emacsdc~ |