-
Notifications
You must be signed in to change notification settings - Fork 1
/
packages.nix
55 lines (39 loc) · 1.12 KB
/
packages.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
{ config, lib, pkgs, ... }:
{
home.sessionPath = [
];
home.packages = with pkgs; [
devenv
tree
clang
delta # diff stuff, https://github.com/dandavison/delta
difftastic # A structural diff that understands syntax.
diff-so-fancy # better diff
aria2 # multiprotocol downloader: HTTP/HTTPS/FTP/SFTP/BitTorrent/Metalink
curl
wget
# curlie
# httpie # HTTP requests tool, Python
xh # Friendly and fast tool for sending HTTP requests, written in Rust
docker
docker-credential-helpers
lazydocker
dive # docker images exploration, https://github.com/wagoodman/dive
duf # better df
gdu # better du
fd # better find
moreutils
# procs # better ps
ripgrep # better grep
ack # find in files, grep-ish, https://linux.die.net/man/1/ack
watch
jqp # jq playground, https://github.com/noahgorstein/jqp
fx # Terminal JSON viewer & processor, https://fx.wtf/
duckdb # https://duckdb.org/ SQL to CSV, TSV and many APIs
scc # better cloc - code stats
hyperfine # benchmark command
mediainfo
libmediainfo
yt-dlp
];
}