24 lines
330 B
Nix
24 lines
330 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
# General CLI utilities
|
|
ripgrep
|
|
fd
|
|
jq
|
|
htop
|
|
btop
|
|
file
|
|
unzip
|
|
p7zip
|
|
exiftool
|
|
|
|
# Development & scripting tools (compatible with Neovim LSP config)
|
|
nixd
|
|
nixfmt-rfc-style
|
|
ansible
|
|
ansible-language-server
|
|
ansible-lint
|
|
];
|
|
}
|