nix-dotfiles/users/richie/home/programs.nix

49 lines
646 B
Nix
Raw Normal View History

{ pkgs, inputs, ... }:
2024-04-14 22:23:37 -04:00
{
home.packages = with pkgs; [
# cli
bat
btop
2024-04-17 18:50:59 -04:00
eza
2024-04-14 22:23:37 -04:00
git
gnupg
ncdu
neofetch
2024-06-24 12:23:55 -04:00
rar
2024-04-14 22:23:37 -04:00
ripgrep
sops
starship
2024-04-17 18:50:59 -04:00
tmux
2024-04-14 22:23:37 -04:00
zoxide
# system info
hwloc
lynis
pciutils
smartmontools
usbutils
2024-04-20 12:54:33 -04:00
# networking
2024-04-14 22:23:37 -04:00
iperf3
nmap
wget
# python
2024-05-27 15:35:41 -04:00
poetry
2024-07-07 19:10:19 -04:00
python312
2024-04-14 22:23:37 -04:00
ruff
# Rust packages
topgrade
trunk
wasm-pack
cargo-watch
cargo-generate
cargo-audit
cargo-update
# nix
nix-init
nix-output-monitor
nix-prefetch
nix-tree
nixpkgs-fmt
2024-07-07 11:00:26 -04:00
inputs.server_tools.packages.x86_64-linux.default
2024-04-14 22:23:37 -04:00
];
}