aboutsummaryrefslogtreecommitdiff
path: root/nix/users
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nix/users/fcuny/shell.nix36
1 files changed, 14 insertions, 22 deletions
diff --git a/nix/users/fcuny/shell.nix b/nix/users/fcuny/shell.nix
index efcbae5..e155169 100644
--- a/nix/users/fcuny/shell.nix
+++ b/nix/users/fcuny/shell.nix
@@ -10,28 +10,20 @@ in
home.packages =
with pkgs;
[
- # encryption
- age
-
- # shell
- shellcheck
-
- # shell utils
- coreutils
- direnv
- dust
- procs
- ripgrep
- tree
- wget
-
- # network
- bandwhich
-
- # data manipulation
- jless
- jq
- yq
+ age # encryption tool
+ bandwhich # bandwhich - a better ifconfig
+ bottom # btm - a better top
+ coreutils # GNU core utilities
+ direnv # direnv - directory environment tool
+ dust # dust - a more intuitive du
+ jless # jless - a better cat
+ jq # jq - a better json
+ procs # procs - a better ps
+ ripgrep # ripgrep - a better grep
+ shellcheck # shell script linter
+ tree # tree - a better ls
+ wget # wget - another download tool
+ yq # yq - a better yaml
]
++ (lib.optionals (isLinux) [ htop ]);