Files
dotfiles/users/richie/home/programs.nix
T
Richie 5bc9ee5de9 feat(home): expand Richie’s minimal profile for Portal
- move essential CLI tools into the minimal package set
- remove duplicated packages from the full programs profile
- add the portal-1 SSH host on port 278
2026-08-26 07:33:31 -04:00

67 lines
844 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
# cli
bat
fd
ffmpegthumbnailer
fzf
git
gnupg
imagemagick
jq
ncdu
fastfetch
ouch
p7zip
poppler
rar
unzip
yazi
zoxide
# Home Assistant
esphome
# data recovery
testdisk
# system info
hwloc
lynis
pciutils
smartmontools
usbutils
# networking
iperf3
nmap
# python
ruff
uv
# nodejs
nodejs
# Rust packages
bacon
cargo
cargo-audit
cargo-generate
cargo-machete
cargo-update
cargo-watch
clippy
rust-analyzer
rustc
rustfmt
trunk
wasm-pack
# cpp
clang-tools
clang_20
# nix
nix-init
nix-output-monitor
nix-prefetch
nix-tree
nixfmt
treefmt
codebase-memory-mcp
];
}