From 77933372043d6edd2984831d61f031a365ec57fa Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Tue, 30 May 2023 10:10:31 -0400 Subject: [PATCH] Fix emacs font on nixos 23.05 --- config.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.org b/config.org index f050bc2..2add6f0 100644 --- a/config.org +++ b/config.org @@ -35,7 +35,7 @@ The provided default ~config.el~ ;; Figure out what the name and size of the font are going to be based on the system type and ;; hostname (let ((nm/font-name (cond ((or IS-MAC IS-WINDOWS) "Iosevka Nerd Font") - (t "Iosevka"))) + (t "Iosevka Nerd Font"))) (nm/font-size (cond (IS-MAC 11) ((or IS-WINDOWS (string= (system-name) "wsl")) 16) (t 13)))