From d6bf5f234e16a7db8be6d8fb1ad976bc8c8a4ffc Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Tue, 10 Feb 2026 12:59:50 -0500 Subject: [PATCH] Only alias zed to zeditor on Linux (macOS does this already) --- home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home.nix b/home.nix index 5dabe35..ce0c314 100644 --- a/home.nix +++ b/home.nix @@ -171,6 +171,7 @@ in tf = "terraform"; tree = "eza --tree"; v = "nvim"; + } // lib.optionalAttrs stdenv.isLinux { zed = "zeditor"; }; };