minion@greylag: change default editor

ed is the only functional editor. Sadly, some programs (stg) are
impossible to use when $EDITOR is ed

For now, we will swap it out for nvim

But ed will remain forever in our hearts
</sarcasm>

Change-Id: I962278cd2ddd9f26a20e6f3df9c00296bfba97ab
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/395
Reviewed-by: Skyler Grey <minion@clicks.codes>
Tested-by: Skyler Grey <minion@clicks.codes>
diff --git a/homes/x86_64-linux/minion@greylag/default.nix b/homes/x86_64-linux/minion@greylag/default.nix
index 9a53e04..f8f54d0 100644
--- a/homes/x86_64-linux/minion@greylag/default.nix
+++ b/homes/x86_64-linux/minion@greylag/default.nix
@@ -72,12 +72,18 @@
 
     theme.font.nerdFontGlyphs.enable = true;
 
-    editor.ed.enable = true;
-    editor.ed.prompt = ":";
+    editor.ed = {
+      enable = true;
+      prompt = ":";
+      defaultEditor = false;
+    };
+
     editor.neovim.enable = true;
-    editor.emacs.enable = true;
-    editor.neovim.defaultEditor = false;
-    editor.emacs.defaultEditor = false;
+
+    editor.emacs ={
+      enable = true;
+      defaultEditor = false;
+    };
 
     input.keyboard = {
       layout = "us";