From e50029676c72c6f27b3f360e65d5f65506549806 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Mon, 25 Apr 2022 20:46:57 -0400 Subject: [PATCH] shell: Fix ee alias --- home/email.nix | 2 +- home/shellcommon.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/home/email.nix b/home/email.nix index 450a472..ceec7db 100644 --- a/home/email.nix +++ b/home/email.nix @@ -41,7 +41,7 @@ in { himalaya.enable = true; address = "srid@srid.ca"; userName = "hey@srid.ca"; - passwordCommand = "cat /Users/srid/.protonmail.password"; # Local only, so I don't care + passwordCommand = "cat /Users/srid/.protonmail.password"; # Temporary password from ProtonMail Bridge, so I don't care }; icloud = servers.icloud // { inherit realName; diff --git a/home/shellcommon.nix b/home/shellcommon.nix index 5e9f806..8b4904a 100644 --- a/home/shellcommon.nix +++ b/home/shellcommon.nix @@ -2,7 +2,7 @@ { shellAliases = { e = "nvim"; - ee = "nvim $(fzf)"; + ee = "nvim \"$(fzf)\""; g = "${pkgs.git}/bin/git"; lg = "lazygit"; ls = "${pkgs.exa}/bin/exa";