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:
parent
2f3ecd8202
commit
e3da09f163
2 changed files with 24 additions and 6 deletions
|
@ -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
|
||||
'';
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue