Compare commits

...
4 Commits
Author SHA1 Message Date
msyds 2b85764f11 chore(fruitbook): enable kdeconnect 2026-02-18 16:43:42 -07:00
msyds f22ccc40a0 fix(lldap): warning 2026-02-18 16:43:42 -07:00
msyds f1e239b13b fix(emacs): keep custom out of init.el 2026-02-18 16:43:42 -07:00
msyds 6c7c1f1b17 fix(emacs): keep bookmarks and transient out of vc 2026-02-18 16:43:02 -07:00
5 changed files with 17 additions and 4 deletions
+1
View File
@@ -17,6 +17,7 @@
openssh.enable = true;
sydpkgs.overlay.enable = true;
dank-material-shell.enable = true;
kdeconnect.enable = true;
users.users = [
"crumb"
@@ -71,9 +71,11 @@ the unwritable tidbits."
(setq-local register-alist
(cl-remove-if-not #'savehist-printable register-alist)))))
(with-eval-after-load 'bookmark
;; Stay out of my config dir!
(setq bookmark-default-file (file-name-concat syd-data-dir "bookmarks")))
;; Stay out of my config dir!
(setq bookmark-default-file
(file-name-concat syd-data-dir "bookmarks")
transient-history-file
(file-name-concat syd-data-dir "transient/history.el"))
(provide 'syd-autosave)
+2 -1
View File
@@ -63,4 +63,5 @@
syd/eshell
syd/treesit
syd/grammatical-framework
syd/lsp))
syd/lsp
syd/custom))
@@ -0,0 +1,8 @@
;;; -*- lexical-binding: t -*-
(require 'syd/base)
;; Stay out of version-control!!!!!
(setq custom-file (file-name-concat syd-data-dir "custom.el"))
(provide 'syd/custom)
+1
View File
@@ -62,6 +62,7 @@ in {
ldap_base_dn = cfg.baseDN;
ldap_user_dn = "lain";
ldap_user_email = "lain@deertopia.net";
force_ldap_user_pass_reset = "always";
ldaps_options = {
enabled = true;
port = 6360;