diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/emacs.org | 3 | ||||
| -rw-r--r-- | config/nix.org | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/config/emacs.org b/config/emacs.org index 06693b8..c0e568c 100644 --- a/config/emacs.org +++ b/config/emacs.org @@ -1249,7 +1249,8 @@ For all my mathematics and programming notes: (org-roam-ui-follow t "Have cool visual while editing org-roam") (org-roam-ui-update-on-save t "This option is obvious") (org-roam-ui-open-on-start t "Have cool visual open in qutebrowser when emacs loads") - :config (org-roam-ui-sync-theme))) + ;; lol this is really bad but we'll let it pass because it is a race condition i probably can't fix + :config (run-with-timer 10 nil #'org-roam-ui-sync-theme))) #+end_src ** Pinentry diff --git a/config/nix.org b/config/nix.org index fd83045..4af62f3 100644 --- a/config/nix.org +++ b/config/nix.org @@ -3273,6 +3273,7 @@ in lang-haskell.enable = lib.mkDefault config.monorepo.profiles.enable; lang-idris.enable = lib.mkDefault config.monorepo.profiles.enable; lang-agda.enable = lib.mkDefault config.monorepo.profiles.enable; + lang-scheme.enable = lib.mkDefault config.monorepo.profiles.enable; crypto.enable = lib.mkDefault config.monorepo.profiles.enable; art.enable = lib.mkDefault config.monorepo.profiles.enable; @@ -3502,7 +3503,6 @@ epkgs: [ epkgs.projectile epkgs.rustic epkgs.s - epkgs.scheme-mode epkgs.solaire-mode epkgs.scad-mode epkgs.simple-httpd @@ -3560,7 +3560,7 @@ the timezone. My iamb profile. Note that iamb does not support calling (obviously, as it is a terminal app), but the nice thing about it is that I can set it up declaratively, so in case element-desktop stops working because of lack of declarative setup, I can still use this. #+begin_src nix :tangle ../nix/modules/home/iamb.nix -{ super, config, ... }: +{ super, lib, config, ... }: { programs.iamb = { enable = lib.mkDefault config.monorepo.profiles.graphics.enable; |
