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.
|
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;
|
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue