blob: 89b7979d90a615d9fa14e813ae5f91ef31bfe9ff (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
config,
pkgs,
...
}: {
nixpkgs.config = {
allowUnfree = true;
};
environment.systemPackages = with pkgs; [
helix
fish
# unix utilities
tmux
bat # cat replacement written in Rust
colordiff
direnv # Per-directory environment variables
lsd
fd # find replacement written in Rust
fzf # Fuzzy finder
git
glibcLocales
gnumake
htop # Resource monitoring
jq # JSON parsing for the CLI
lsof
ripgrep # grep replacement written in Rust
sd # Fancy sed replacement
silver-searcher
skim # High-powered fuzzy finder written in Rust
strace # debug stack trace
tealdeer # tldr for various shell tools
testdisk
tokei # Handy tool to see lines of code by language
watchexec # Fileystem watcher/executor useful for speedy development
# xsv # CSV file parsing utility
just # Intriguing new make replacement
mdcat # Markdown converter/reader for the CLI
tree
unzip
zip
ncdu
# networking
curl
caddy # simple web server made with go
innernet
# s3
minio
# streaming
ffmpeg
# databases
# postgresql
# sqlite
devenv
];
}
|