Files
nixos/home/pkg.nix
luochen570 14e57c9096 fix: add missing packages for zsh aliases and plugins
- home/pkg.nix: add eza, bat, ack, fzf
- modules/core/pkg.nix: add kubectl (for OMZ kubectl plugin)
2026-05-26 12:46:55 +08:00

17 lines
303 B
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{ pkgs, ... }:
{
home.packages = with pkgs; [
# 文件/磁盘工具
duf
ncdu
yazi
fastfetch
# Shell 工具zsh aliases 依赖)
eza # ls/eza aliases
bat # cat alias (bat -pp)
ack # afind alias
fzf # fzf-tab 依赖
];
}