2023-05-11 21:25:46 +02:00
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs = {
|
2023-05-12 13:54:26 +02:00
|
|
|
zellij = {
|
|
|
|
enable = true;
|
|
|
|
enableBashIntegration = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
enableFishIntegration = true;
|
|
|
|
};
|
2023-05-11 21:25:46 +02:00
|
|
|
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 \
|
2024-02-07 08:45:44 +01:00
|
|
|
'eval "$(@zellij@/bin/dummy setup --generate-auto-start bash)"'
|
2023-05-11 21:25:46 +02:00
|
|
|
|
|
|
|
assertFileExists home-files/.zshrc
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.zshrc \
|
2024-02-07 08:45:44 +01:00
|
|
|
'eval "$(@zellij@/bin/dummy setup --generate-auto-start zsh)"'
|
2023-05-11 21:25:46 +02:00
|
|
|
|
|
|
|
assertFileExists home-files/.config/fish/config.fish
|
|
|
|
assertFileContains \
|
|
|
|
home-files/.config/fish/config.fish \
|
2024-02-07 08:45:44 +01:00
|
|
|
'eval (@zellij@/bin/dummy setup --generate-auto-start fish | string collect)'
|
2023-05-11 21:25:46 +02:00
|
|
|
'';
|
|
|
|
}
|