blob: 6574071e53a1fa7bcaf57618e546c84360d41226 (
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
|
{ config, pkgs, ... }:
{
nixpkgs.config = {
allowUnfree = true;
};
environment.systemPackages = with pkgs; [
vim
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
htop # Resource monitoring
jq # JSON parsing for the CLI
lsof
ripgrep # grep replacement written in Rust
sd # Fancy sed replacement
silver-searcher
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
# networking
curl
wget
minio
ncdu
];
}
|