1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-14 02:33:38 +02:00

nix-your-shell: Add support for ion too

`nix-your-shell` only needs shell-specific support for automatically
configuring the shell, but the HM module takes care of it here.

I tested and running `nix-your-shell ion nix develop` or such, does
the right thing: `ion` is started as the inner shell in the new env.
This commit is contained in:
nicoo 2023-11-10 11:32:28 +00:00
parent bc7ef22d1f
commit b7615d9c1b

View File

@ -4,7 +4,7 @@ let
cfg = config.programs.nix-your-shell;
# In principle `bash` is supported too, but... 😹
shells = [ "fish" "nushell" "zsh" ];
shells = [ "fish" "ion" "nushell" "zsh" ];
programs = [ "nix" "nix-shell" ];
in {
meta.maintainers = with lib.maintainers; [ nicoo ];