mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
zellij: use full executable path
This commit is contained in:
parent
f99eace7c1
commit
5b9156fa9a
2 changed files with 7 additions and 6 deletions
|
@ -6,6 +6,7 @@ let
|
|||
|
||||
cfg = config.programs.zellij;
|
||||
yamlFormat = pkgs.formats.yaml { };
|
||||
zellijCmd = getExe cfg.package;
|
||||
|
||||
in {
|
||||
meta.maintainers = [ hm.maintainers.mainrs ];
|
||||
|
@ -69,16 +70,16 @@ in {
|
|||
};
|
||||
|
||||
programs.bash.initExtra = mkIf cfg.enableBashIntegration (mkOrder 200 ''
|
||||
eval "$(zellij setup --generate-auto-start bash)"
|
||||
eval "$(${zellijCmd} setup --generate-auto-start bash)"
|
||||
'');
|
||||
|
||||
programs.zsh.initExtra = mkIf cfg.enableZshIntegration (mkOrder 200 ''
|
||||
eval "$(zellij setup --generate-auto-start zsh)"
|
||||
eval "$(${zellijCmd} setup --generate-auto-start zsh)"
|
||||
'');
|
||||
|
||||
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration
|
||||
(mkOrder 200 ''
|
||||
eval (zellij setup --generate-auto-start fish | string collect)
|
||||
eval (${zellijCmd} setup --generate-auto-start fish | string collect)
|
||||
'');
|
||||
};
|
||||
}
|
||||
|
|
|
@ -26,16 +26,16 @@
|
|||
assertFileExists home-files/.bashrc
|
||||
assertFileContains \
|
||||
home-files/.bashrc \
|
||||
'eval "$(zellij setup --generate-auto-start bash)"'
|
||||
'eval "$(@zellij@/bin/dummy setup --generate-auto-start bash)"'
|
||||
|
||||
assertFileExists home-files/.zshrc
|
||||
assertFileContains \
|
||||
home-files/.zshrc \
|
||||
'eval "$(zellij setup --generate-auto-start zsh)"'
|
||||
'eval "$(@zellij@/bin/dummy setup --generate-auto-start zsh)"'
|
||||
|
||||
assertFileExists home-files/.config/fish/config.fish
|
||||
assertFileContains \
|
||||
home-files/.config/fish/config.fish \
|
||||
'eval (zellij setup --generate-auto-start fish | string collect)'
|
||||
'eval (@zellij@/bin/dummy setup --generate-auto-start fish | string collect)'
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue