22 lines
420 B
Nix
22 lines
420 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
config,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
let
|
||
|
|
cfg = config.programs.bash.blesh;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
options = {
|
||
|
|
programs.bash.blesh.enable = lib.mkEnableOption "blesh, a full-featured line editor written in pure Bash";
|
||
|
|
};
|
||
|
|
|
||
|
|
config = lib.mkIf cfg.enable {
|
||
|
|
programs.bash.interactiveShellInit = lib.mkBefore ''
|
||
|
|
source ${pkgs.blesh}/share/blesh/ble.sh
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
meta.maintainers = with lib.maintainers; [ laalsaas ];
|
||
|
|
}
|