mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
16 lines
412 B
Nix
16 lines
412 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 ];
|
|
}
|