41 lines
603 B
Nix
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 { };
|
|
};
|
|
};
|
|
}
|