-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome-cli.nix
94 lines (88 loc) · 1.2 KB
/
home-cli.nix
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
{
pkgs,
...
}:
{
imports = [
./values.nix
./shared.nix
./style
./aria2.nix
./bash.nix
./bat.nix
./btop.nix
./clang.nix
./dict.nix
./dockfmt.nix
./emacs.nix
./fd.nix
./foot.nix
./fzf.nix
./git.nix
./gitui.nix
./hunspell.nix
./megatools.nix
./mpv.nix
./ncdu.nix
./neovim.nix
./nil.nix
./nmap.nix
./p7zip.nix
./pandoc.nix
./playerctl.nix
./pulsemixer.nix
./python.nix
./ranger.nix
./ripgrep.nix
./shellcheck.nix
./shfmt.nix
./starship.nix
./termdown.nix
./tree.nix
./zellij.nix
./zoxide.nix
];
home.packages = with pkgs; [
android-tools
kubectl
kubectx
dig
gnuplot
jq
less
nix-output-monitor
qpdf
unzip
zip
wireguard-tools
gcc
stow
payload-dumper-go
plantuml
smartmontools
inkscape
kubernetes-helm
yt-dlp
talosctl
mise
go-task
yazi
httpie
asciinema
];
programs = {
lsd = {
enable = true;
enableAliases = true;
};
direnv = {
enable = true;
};
k9s = {
enable = true;
};
};
nix = {
gc.automatic = true;
};
}