2022-12-06 21:23:25 +01:00
|
|
|
{ lib, config, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.bash.blesh;
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
programs.bash.blesh.enable = mkEnableOption (mdDoc "blesh");
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.bash.interactiveShellInit = mkBefore ''
|
2022-08-10 07:58:15 +02:00
|
|
|
source ${pkgs.blesh}/share/blesh/ble.sh
|
2022-12-06 21:23:25 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
meta.maintainers = with maintainers; [ laalsaas ];
|
|
|
|
}
|