depot/third_party/nixpkgs/nixos/modules/programs/bash/blesh.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

15 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 ];
}