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 2f3ecd8202
commit e3da09f163
No known key found for this signature in database
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. 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; cfg = config.programs.zellij;
yamlFormat = pkgs.formats.yaml { }; yamlFormat = pkgs.formats.yaml { };
mkShellIntegrationOption = option:
option // {
default = false;
example = true;
};
in { in {
meta.maintainers = [ lib.maintainers.khaneliman lib.hm.maintainers.mainrs ]; meta.maintainers = [ lib.maintainers.khaneliman lib.hm.maintainers.mainrs ];
@ -61,14 +67,14 @@ in {
''; '';
}; };
enableBashIntegration = enableBashIntegration = mkShellIntegrationOption
lib.hm.shell.mkBashIntegrationOption { inherit config; }; (lib.hm.shell.mkBashIntegrationOption { inherit config; });
enableFishIntegration = enableFishIntegration = mkShellIntegrationOption
lib.hm.shell.mkFishIntegrationOption { inherit config; }; (lib.hm.shell.mkFishIntegrationOption { inherit config; });
enableZshIntegration = enableZshIntegration = mkShellIntegrationOption
lib.hm.shell.mkZshIntegrationOption { inherit config; }; (lib.hm.shell.mkZshIntegrationOption { inherit config; });
}; };
config = let config = let