Files
nixos-dotfiles/modules/home-manager/cli-tools.nix
BalrajSinghGidda de4459ff54 nnanana
2026-03-20 21:48:22 +05:30

19 lines
490 B
Nix

{ pkgs, ... }:
{
# Command-line tools and utilities
home.packages = with pkgs; [
# Code search and analysis
ripgrep # Fast grep alternative (rg)
# File management
yazi # Terminal file manager
eza # Modern ls replacement
zoxide # Smart cd command
# Nix development tools
nil # Nix language server
nixpkgs-fmt # Nix code formatter
(callPackage ./programs/copilot-fix.nix {})
];
}