- 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
67 lines
844 B
Nix
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
|
|
];
|
|
}
|