From b7615d9c1b58709a3e3e8d1ae7b1b0f1df06307f Mon Sep 17 00:00:00 2001 From: nicoo Date: Fri, 10 Nov 2023 11:32:28 +0000 Subject: [PATCH] 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. --- modules/programs/nix-your-shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/nix-your-shell.nix b/modules/programs/nix-your-shell.nix index cde05744..2af0ec56 100644 --- a/modules/programs/nix-your-shell.nix +++ b/modules/programs/nix-your-shell.nix @@ -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 ];