blob: 36b42677ee14443629c8c935502d8096befa0b4a (
plain) (
blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
{
lib,
pkgs,
...
}:
let
isLinux = pkgs.stdenv.isLinux;
in
{
home.packages =
with pkgs;
[
# shell
shellcheck
# shell utils
coreutils
direnv
dust
just
procs
ripgrep
tree
wget
# network
bandwhich
# data manipulation
jless
jq
yq
]
++ (lib.optionals (isLinux) [ htop ]);
# https://github.com/nix-community/home-manager/blob/master/modules/programs/fish.nix
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting ""
'';
shellAbbrs = {
ncg = "nix-collect-garbage -7d";
c = "clear";
j = "just";
};
shellAliases = {
ls = "eza -l -L=1 --git --color=always --group-directories-first";
la = "eza -la --git --color=always --group-directories-first";
ll = "eza -la -L=1 --git --color=always --group-directories-first";
lt = "eza -aT -L=2 --git --color=always --group-directories-first";
};
};
# https://github.com/nix-community/home-manager/blob/master/modules/programs/starship.nix
programs.starship = {
enable = true;
enableFishIntegration = true;
enableBashIntegration = true;
enableZshIntegration = false;
settings = {
add_newline = false;
character = {
success_symbol = "[λ](bold green)";
error_symbol = "[λ](bold red)";
};
username = {
show_always = true;
};
hostname = {
ssh_only = true;
};
directory = {
truncation_length = 1;
truncate_to_repo = false;
fish_style_pwd_dir_length = 1;
};
};
};
# an alternative to ls
programs.eza = {
enable = true;
icons = "never";
enableFishIntegration = false;
extraOptions = [
"--group-directories-first"
"--no-quotes"
"--git-ignore"
"--icons=never"
];
};
# an alternative to find
programs.fd = {
enable = true;
hidden = true;
ignores = [
".git/"
".direnv/"
];
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableZshIntegration = true;
config = {
global.disable_stdin = true;
global.strict_env = true;
};
};
home.sessionVariables = {
EDITOR = "code --wait";
HOMEBREW_NO_AUTO_UPDATE = 1;
LESS = "-FRSXM";
LESSCHARSET = "utf-8";
PAGER = "less";
SHELL = "${pkgs.fish}/bin/fish";
VISUAL = "code --wait";
};
}
|