scmpuff: add dependencies when shell integrations are enabled
This commit is contained in:
parent
44677a1c96
commit
bb435cb800
|
@ -54,7 +54,9 @@ in {
|
||||||
concatStringsSep " " ([ "--shell=${shell}" ]
|
concatStringsSep " " ([ "--shell=${shell}" ]
|
||||||
++ optional (!cfg.enableAliases) "--aliases=false");
|
++ optional (!cfg.enableAliases) "--aliases=false");
|
||||||
in {
|
in {
|
||||||
home.packages = [ cfg.package ];
|
home.packages = [ cfg.package ] ++ optional (cfg.enableBashIntegration
|
||||||
|
|| cfg.enableZshIntegration || cfg.enableFishIntegration) pkgs.which
|
||||||
|
++ optionals cfg.enableFishIntegration (with pkgs; [ gawk gnugrep ]);
|
||||||
|
|
||||||
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
||||||
eval "$(${cfg.package}/bin/scmpuff init ${mkArgs "bash"})"
|
eval "$(${cfg.package}/bin/scmpuff init ${mkArgs "bash"})"
|
||||||
|
|
Loading…
Reference in a new issue