mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let cfg = config.programs.nix-your-shell;
|
|
in {
|
|
meta.maintainers = [ lib.maintainers.terlar ];
|
|
|
|
options.programs.nix-your-shell = {
|
|
enable = lib.mkEnableOption ''
|
|
{command}`nix-your-shell`, a wrapper for `nix develop` or `nix-shell`
|
|
to retain the same shell inside the new environment'';
|
|
|
|
package = lib.mkPackageOption pkgs "nix-your-shell" { };
|
|
|
|
enableFishIntegration =
|
|
lib.hm.shell.mkFishIntegrationOption { inherit config; };
|
|
|
|
enableNushellIntegration =
|
|
lib.hm.shell.mkNushellIntegrationOption { inherit config; };
|
|
|
|
enableZshIntegration =
|
|
lib.hm.shell.mkZshIntegrationOption { inherit config; };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
programs = {
|
|
fish.interactiveShellInit = lib.mkIf cfg.enableFishIntegration ''
|
|
${lib.getExe cfg.package} fish | source
|
|
'';
|
|
|
|
nushell = lib.mkIf cfg.enableNushellIntegration {
|
|
extraConfig = ''
|
|
source ${
|
|
pkgs.runCommand "nix-your-shell-nushell-config.nu" { } ''
|
|
${lib.getExe cfg.package} nu >> "$out"
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
|
|
zsh.initContent = lib.mkIf cfg.enableZshIntegration ''
|
|
${lib.getExe cfg.package} zsh | source /dev/stdin
|
|
'';
|
|
};
|
|
};
|
|
}
|