diff --git a/home/pkg.nix b/home/pkg.nix index 475f5ae..3dd9aa0 100644 --- a/home/pkg.nix +++ b/home/pkg.nix @@ -1,9 +1,16 @@ { pkgs, ... }: { - home.packages = with 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 依赖 ]; } diff --git a/modules/core/pkg.nix b/modules/core/pkg.nix index c98baa8..4203e42 100644 --- a/modules/core/pkg.nix +++ b/modules/core/pkg.nix @@ -5,5 +5,8 @@ git htop wget + + # 系统级工具(多个 host 共用) + kubectl # oh-my-zsh kubectl plugin ]; }