shell: Fix ee alias

This commit is contained in:
Sridhar Ratnakumar 2022-04-25 20:46:57 -04:00
parent ba0b64b6b7
commit e50029676c
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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";