aboutsummaryrefslogtreecommitdiff
path: root/modules/users/shells/bash/default.nix
blob: d17ffc5894583a58c2c106aa281b8e2f5c704d1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  config,
  pkgs,
  lib,
  ...
}:

let
  inherit (lib) mkOption mkIf types;
  cfg = config.nx.shells.bash;
in
{
  options.nx.shells.bash = {
    enable = mkOption {
      type = types.bool;
      default = config.nx.terminal.defaultShell == "bash";
    };
  };

  config = mkIf cfg.enable {
    home.packages = with pkgs; [
      zoxide
    ];

    programs.bash = {
      enable = true;
      enableCompletion = true;
      initExtra = ''
        # view man pages with nvim
        export MANPAGER="nvim +Man!"

        # vim keybindings
        set -o vi

        # zoxide smarter cd command
        eval "$(zoxide init bash)"
      '';
      shellAliases = {
        ls = "ls --color=auto";
      };
    };
  };
}