Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
420 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
}