From b37e4bc17957a7f076fbf593634776d24bb22dd3 Mon Sep 17 00:00:00 2001
From: Chris Cochrun <chris@cochrun.xyz>
Date: Wed, 11 May 2022 06:00:40 -0500
Subject: [PATCH] fixing a typo in environment variables

---
 README.org                   | 4 ++--
 system/syl/configuration.nix | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.org b/README.org
index f964f55..1166c7a 100644
--- a/README.org
+++ b/README.org
@@ -114,8 +114,8 @@ Notice how I am including all of my software here. It may be a big file, but hav
   # Set default shell to be dash for speed
   # environment.binsh = "${pkgs.dash}/bin/dash";
   environment.variables = {
-    EDITOR = "emacsclient -t"
-    VISUAL = "emacsclient -c"
+    EDITOR = "emacsclient -t";
+    VISUAL = "emacsclient -c";
   };
 
   hardware.uinput.enable = true;
diff --git a/system/syl/configuration.nix b/system/syl/configuration.nix
index 1c2bcf2..90c09c7 100644
--- a/system/syl/configuration.nix
+++ b/system/syl/configuration.nix
@@ -38,8 +38,8 @@
   # Set default shell to be dash for speed
   # environment.binsh = "${pkgs.dash}/bin/dash";
   environment.variables = {
-    EDITOR = "emacsclient -t"
-    VISUAL = "emacsclient -c"
+    EDITOR = "emacsclient -t";
+    VISUAL = "emacsclient -c";
   };
 
   hardware.uinput.enable = true;