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)
This commit is contained in:
luochen570
2026-05-26 12:46:55 +08:00
parent 4349da57ea
commit 14e57c9096
2 changed files with 11 additions and 1 deletions

View File

@@ -1,9 +1,16 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
# 文件/磁盘工具
duf duf
ncdu ncdu
yazi yazi
fastfetch fastfetch
# Shell 工具zsh aliases 依赖)
eza # ls/eza aliases
bat # cat alias (bat -pp)
ack # afind alias
fzf # fzf-tab 依赖
]; ];
} }

View File

@@ -5,5 +5,8 @@
git git
htop htop
wget wget
# 系统级工具(多个 host 共用)
kubectl # oh-my-zsh kubectl plugin
]; ];
} }