summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/bash/blesh.nix
blob: 233918f480604b2877ba159ef620a6ea0462063a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  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 ];
}