mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
70c8bd08e6
* zellij: disables shell integrations by default * zellij: removes outdated comment from test
41 lines
1,002 B
Nix
41 lines
1,002 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
programs = {
|
|
zellij = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
bash.enable = true;
|
|
zsh.enable = true;
|
|
fish.enable = true;
|
|
};
|
|
|
|
# Needed to avoid error with dummy fish package.
|
|
xdg.dataFile."fish/home-manager_generated_completions".source =
|
|
lib.mkForce (builtins.toFile "empty" "");
|
|
|
|
test.stubs = {
|
|
zsh = { };
|
|
zellij = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bashrc
|
|
assertFileContains \
|
|
home-files/.bashrc \
|
|
'eval "$(zellij setup --generate-auto-start bash)"'
|
|
|
|
assertFileExists home-files/.zshrc
|
|
assertFileContains \
|
|
home-files/.zshrc \
|
|
'eval "$(zellij 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)'
|
|
'';
|
|
}
|