mirror of
https://github.com/BalrajSinghGidda/nixos-dotfiles.git
synced 2026-04-07 09:27:23 +00:00
19 lines
490 B
Nix
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 {})
|
|
];
|
|
} |