Skip to content

fish and zsh support for the nix run and nix-shell environments of the Nix package manager

License

Notifications You must be signed in to change notification settings

haslersn/any-nix-shell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 

Repository files navigation

any-nix-shell

fish, xonsh, and zsh support for the nix run and nix-shell environments of the Nix package manager.

Features:

  • When entering a nix run or nix-shell environment, the shell stays the same.
  • Inside those environments, your prompt prints the loaded packages to the right.
  • Alternatively, print that information by executing: nix-shell-info
  • nix-shell --command or the like still execute inside bash, such that scripts don't break.

Installation

any-nix-shell can be installed from stable nixpkgs. For instance,

$ nix-env -i any-nix-shell

installs any-nix-shell into your user environment.

Enabling

In the following we describe how to enable the any-nix-shell plugin for your user. This differs slightly among fish, xonsh, and zsh.

fish

Add the following to your ~/.config/fish/config.fish. Create it if it doesn't exist.

any-nix-shell fish --info-right | source

xonsh

Add the following to your xonsh configuration file. (Create it if it doesn't exist.)

execx($(any-nix-shell xonsh --info-right))

zsh

Add the following to your ~/.zshrc. Create it if it doesn't exist.

any-nix-shell zsh --info-right | source /dev/stdin

System-wide enabling on NixOS

Alternatively the any-nix-shell plugin can be enabled system-wide. This enables it for every user. To do so, add the following to your configuration (/etc/nixos/configuration.nix).

fish

{
  programs.fish.enable = true;
  programs.fish.promptInit = ''
    ${pkgs.any-nix-shell}/bin/any-nix-shell fish --info-right | source
  '';
}

xonsh

{
  programs.xonsh.enable = true;
  programs.xonsh.config = ''
    execx($(${pkgs.any-nix-shell}/bin/any-nix-shell xonsh --info-right))
  '';
}

zsh

{
  programs.zsh.enable = true;
  programs.zsh.promptInit = ''
    ${pkgs.any-nix-shell}/bin/any-nix-shell zsh --info-right | source /dev/stdin
  '';
}

zsh with home-manager

{
  programs.zsh.enable = true;
  programs.zsh.initExtra = ''
    any-nix-shell zsh --info-right | source /dev/stdin
  '';
}

Customization

The any-nix-shell command (which is used for enabling the plugin in a specific shell) optionally takes any of the following flags:

Flag Description
--info-right While in a nix shell or nix-shell environment, display information about the loaded packages at the right.

About

fish and zsh support for the nix run and nix-shell environments of the Nix package manager

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages