From fbc5dacf065f8a2315285515b9002db5767d83fb Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Wed, 8 Dec 2021 13:06:03 -0500 Subject: [PATCH] Override EDITOR --- darwin/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/darwin/configuration.nix b/darwin/configuration.nix index 1e44cf8..acda601 100644 --- a/darwin/configuration.nix +++ b/darwin/configuration.nix @@ -28,6 +28,11 @@ ## Programs nixpkgs.config.allowUnfree = true; + ## Erase editor variables + environment.variables = { + EDITOR = ""; # don't set it by default + }; + # Used for backwards compatibility, please read the changelog before changing. # $ darwin-rebuild changelog system.stateVersion = 4;