Files
Nixos-Config/modules/user/packages.nix
2026-04-20 18:47:44 +03:00

76 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
unstable.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
];
}