This commit is contained in:
atagen 2025-07-21 14:36:04 +10:00
parent 27d69d69f1
commit 58479c6252
2 changed files with 30 additions and 0 deletions

View file

@ -1,5 +1,6 @@
{
pkgs,
userPkgs,
...
}:
{
@ -22,4 +23,19 @@
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 { };
};
};
}

14
pkg/fr-yazi.nix Normal file
View file

@ -0,0 +1,14 @@
{
pkgs,
...
}:
pkgs.yaziPlugins.mkYaziPlugin {
pname = "fr.yazi";
version = "dirty-15-07-2025";
src = pkgs.fetchFromGitHub {
owner = "lpnh";
repo = "fr.yazi";
rev = "3d32e55b7367334abaa91f36798ef723098d0a6b";
hash = "sha256-CrKwFMaiEK+TNW6GRZzyt9MfOmjIb3vw0hBpBXyn16k=";
};
}