diff --git a/nix/homeModules/common/fish/aliasesAbbrs.nix b/nix/homeModules/common/fish/aliasesAbbrs.nix index dd8feb54..9352f767 100644 --- a/nix/homeModules/common/fish/aliasesAbbrs.nix +++ b/nix/homeModules/common/fish/aliasesAbbrs.nix @@ -6,7 +6,7 @@ programs.fish = { shellAbbrs = lib.mergeAttrsList [ (lib.optionalAttrs pkgs.stdenv.isLinux { - "," = "nix-shell --command fish -p"; + "," = "nix-shell -p"; }) ]; @@ -20,6 +20,10 @@ # idiot protection chmod = "chmod --preserve-root"; chown = "chown --preserve-root"; + + # I can't make alias with a space, i.e. `nom shell` + nix-shell = "nix-shell --command fish"; + nom-shell = "nom-shell --command fish"; }) ]; };