blob: cd3792981f63c17a0646c5d4651f19127be674b2 (
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
|
{ pkgs, config, ... }: {
home.packages = with pkgs; [
# shell utils
coreutils
direnv
dust
procs
ripgrep
tree
wget
# network
bandwhich
# data manipulation
jless
jq
yq
# encryption
age
# media
# mpv - TODO: this is currently broken
ffmpeg
# dicts
aspell
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
# nix related
nil
nix-direnv
nixd
nixfmt-classic
nixpkgs-fmt
nil # nix lsp
];
xdg = {
configFile = {
"aspell/config".text = ''
local-data-dir ${pkgs.aspell}/lib/aspell
data-dir ${pkgs.aspellDicts.en}/lib/aspell
personal ${config.xdg.configHome}/aspell/en_US.personal
repl ${config.xdg.configHome}/aspell/en_US.repl
'';
};
};
home.sessionVariables = {
EDITOR = "emacsclient -a=";
VISUAL = "emacsclient -a=";
LESS = "-FRSXM";
LESSCHARSET = "utf-8";
PAGER = "less";
ASPELL_CONF = "conf ${config.xdg.configHome}/aspell/config;";
# for some reason, if I don't set this, zsh is picked up and mess up stuff.
SHELL = "${pkgs.fish}/bin/fish";
# stop bothering me with brew messages
HOMEBREW_NO_AUTO_UPDATE = 1;
};
# an alternative to ls
programs.eza = {
enable = true;
icons = false;
enableFishIntegration = false;
extraOptions = [
"--group-directories-first"
"--no-quotes"
"--git-ignore"
"--icons=never"
];
};
# an alternative to find
programs.fd = {
enable = true;
hidden = true;
ignores = [ ".git/" ];
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableZshIntegration = true;
config = {
global.disable_stdin = true;
global.strict_env = true;
};
};
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting ""
'';
shellAbbrs = { ncg = "nix-collect-garbage -d"; };
shellAliases = {
c = "clear";
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";
};
};
}
|