nix/common/cli.nix
2025-07-21 17:05:02 +10:00

41 lines
603 B
Nix

{
pkgs,
userPkgs,
...
}:
{
environment.systemPackages = builtins.attrValues {
inherit (pkgs)
curl
eza
git
;
};
hm.home.packages = builtins.attrValues {
inherit (pkgs)
btop
bat
ripgrep
fd
lazygit
zoxide
zellij
ouch
;
};
programs.yazi = {
enable = true;
plugins = {
inherit (pkgs.yaziPlugins)
lazygit
chmod
diff
mediainfo
smart-enter
full-border
wl-clipboard
;
fr = pkgs.callPackage userPkgs.fr-yazi { };
};
};
}