zellij: disables shell integrations by default (#3981)

* zellij: disables shell integrations by default

* zellij: removes outdated comment from test
This commit is contained in:
Erik Krieg 2023-05-12 07:54:26 -04:00 committed by GitHub
parent a835096fd2
commit 70c8bd08e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 5 deletions

View File

@ -41,15 +41,15 @@ in {
};
enableBashIntegration = mkEnableOption "Enable Bash integration." // {
default = true;
default = false;
};
enableZshIntegration = mkEnableOption "Enable Zsh integration." // {
default = true;
default = false;
};
enableFishIntegration = mkEnableOption "Enable Fish integration." // {
default = true;
default = false;
};
};

View File

@ -2,8 +2,12 @@
{
programs = {
# All shell integratons are enabled by default.
zellij.enable = true;
zellij = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
};
bash.enable = true;
zsh.enable = true;
fish.enable = true;