77 lines
3.3 KiB
Nix
77 lines
3.3 KiB
Nix
# ==========================================
|
|
# PACKAGES — User Applications
|
|
# ==========================================
|
|
# Spec: Codex, Claude Code, Gemini CLI, Helium, Cursor,
|
|
# Antigravity, Lazydocker, Git, Gh, Alacritty,
|
|
# Zoxide, Fzf, Bat, Eza, Fd, Impala, Bun, Nodejs,
|
|
# Docker, Bitwarden, Beeper, Python, Spotify, Tailscale
|
|
# ==========================================
|
|
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
# ── AI Coding Tools ──────────────────────────────────
|
|
unstable.claude-code # Claude Code CLI
|
|
unstable.antigravity # Antigravity IDE
|
|
codex # OpenAI Codex CLI
|
|
gemini-cli # Google Gemini CLI
|
|
|
|
# ── Terminals & Editors ──────────────────────────────
|
|
alacritty # GPU-accelerated terminal
|
|
ghostty # Fast native terminal
|
|
code-cursor # Cursor IDE
|
|
|
|
# ── Browsers ─────────────────────────────────────────
|
|
inputs.helium-browser.packages.${pkgs.stdenv.hostPlatform.system}.default # Helium Browser
|
|
|
|
# ── CLI Essentials (omarchy-style) ───────────────────
|
|
bat # cat with syntax highlighting
|
|
eza # modern ls
|
|
fd # modern find
|
|
fzf # fuzzy finder
|
|
zoxide # smart cd
|
|
ripgrep # fast grep
|
|
lazydocker # Docker TUI
|
|
impala # TUI WiFi manager
|
|
yazi # TUI file manager
|
|
btop # system monitor
|
|
fastfetch # system info
|
|
tealdeer # tldr man pages
|
|
|
|
# ── Version Control ──────────────────────────────────
|
|
git
|
|
gh # GitHub CLI
|
|
lazygit # Git TUI
|
|
|
|
# ── Development Runtimes ─────────────────────────────
|
|
nodejs
|
|
bun
|
|
python3
|
|
uv # fast Python package manager
|
|
|
|
# ── Containers ───────────────────────────────────────
|
|
docker-compose
|
|
|
|
# ── Desktop Apps ─────────────────────────────────────
|
|
bitwarden-desktop # password manager
|
|
beeper # unified messaging
|
|
spotify # music
|
|
|
|
# ── System Utilities ─────────────────────────────────
|
|
wget
|
|
curl
|
|
unzip
|
|
wl-clipboard
|
|
cliphist
|
|
wl-clip-persist
|
|
|
|
# ── Theming Dependencies ─────────────────────────────
|
|
gnome-themes-extra
|
|
adwaita-qt
|
|
adwaita-qt6
|
|
dconf
|
|
];
|
|
|
|
|
|
}
|