1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 21:49:48 +01:00
home-manager/modules/programs/nix-your-shell.nix

25 lines
720 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
cfg = config.programs.nix-your-shell;
exe = lib.getExe pkgs.nix-your-shell;
mkShellAliases = shell: {
nix = "${exe} ${shell} nix --";
nix-shell = "${exe} ${shell} nix-shell --";
};
in {
meta.maintainers = with lib.maintainers; [ nicoo ];
options.programs.nix-your-shell.enable = lib.mkEnableOption ''
`nix-your-shell`, a wrapper for `nix develop` or `nix-shell`
to run the same shell inside the new environment.
'';
config.programs = lib.mkIf cfg.enable {
fish.shellAliases = mkShellAliases "fish";
ion.shellAliases = mkShellAliases "ion";
nushell.shellAliases = mkShellAliases "nushell";
zsh.shellAliases = mkShellAliases "zsh";
};
}