mirror of
https://github.com/nix-community/home-manager
synced 2025-01-12 03:59:49 +01:00
zellij: disables shell integrations by default (#3981)
* zellij: disables shell integrations by default * zellij: removes outdated comment from test
This commit is contained in:
parent
a835096fd2
commit
70c8bd08e6
2 changed files with 9 additions and 5 deletions
|
@ -41,15 +41,15 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
enableBashIntegration = mkEnableOption "Enable Bash integration." // {
|
enableBashIntegration = mkEnableOption "Enable Bash integration." // {
|
||||||
default = true;
|
default = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
enableZshIntegration = mkEnableOption "Enable Zsh integration." // {
|
enableZshIntegration = mkEnableOption "Enable Zsh integration." // {
|
||||||
default = true;
|
default = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
enableFishIntegration = mkEnableOption "Enable Fish integration." // {
|
enableFishIntegration = mkEnableOption "Enable Fish integration." // {
|
||||||
default = true;
|
default = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,12 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
programs = {
|
programs = {
|
||||||
# All shell integratons are enabled by default.
|
zellij = {
|
||||||
zellij.enable = true;
|
enable = true;
|
||||||
|
enableBashIntegration = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
|
};
|
||||||
bash.enable = true;
|
bash.enable = true;
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue