blob: d224442bce8d3b7813fcc6803e396ede81ecf031 (
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
|
{
config,
pkgs,
lib,
...
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.nx.shells.bash;
in
{
options.nx.shells.bash = {
enable = mkEnableOption "bash shell";
};
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";
};
};
};
}
|