1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

zellij: default integration disabled again

Surprises most users and various issues requesting default change.
This commit is contained in:
Austin Horstman 2025-03-24 09:53:33 -05:00
parent 82a3211477
commit a9042b53c2
2 changed files with 24 additions and 6 deletions

View file

@ -2157,6 +2157,18 @@ in {
See https://github.com/WGUNDERWOOD/tex-fmt for more information.
'';
}
{
time = "2025-03-24T22:31:45+00:00";
message = ''
The following default values change from 'true' to
'false':
- programs.zellij.enableBashIntegration
- programs.zellij.enableFishIntegration
- programs.zellij.enableZshIntegration
'';
}
];
};
}

View file

@ -5,6 +5,12 @@ let
cfg = config.programs.zellij;
yamlFormat = pkgs.formats.yaml { };
mkShellIntegrationOption = option:
option // {
default = false;
example = true;
};
in {
meta.maintainers = [ lib.maintainers.khaneliman lib.hm.maintainers.mainrs ];
@ -61,14 +67,14 @@ in {
'';
};
enableBashIntegration =
lib.hm.shell.mkBashIntegrationOption { inherit config; };
enableBashIntegration = mkShellIntegrationOption
(lib.hm.shell.mkBashIntegrationOption { inherit config; });
enableFishIntegration =
lib.hm.shell.mkFishIntegrationOption { inherit config; };
enableFishIntegration = mkShellIntegrationOption
(lib.hm.shell.mkFishIntegrationOption { inherit config; });
enableZshIntegration =
lib.hm.shell.mkZshIntegrationOption { inherit config; };
enableZshIntegration = mkShellIntegrationOption
(lib.hm.shell.mkZshIntegrationOption { inherit config; });
};
config = let