added yazi

This commit is contained in:
John Lancaster
2026-06-10 08:53:21 -05:00
parent a337ce6f2c
commit f2254e5dc7
2 changed files with 13 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
{ self, inputs, ... }: {
# https://github.com/Lassulus/wrappers/blob/main/modules/yazi/module.nix
perSystem = { system, pkgs, lib, ... }: {
packages.yazi = (inputs.wrappers.wrapperModules.yazi.apply {
inherit pkgs;
settings = {
mgr.ratio = [ 1 4 3 ];
};
}).wrapper;
};
}
+2 -1
View File
@@ -140,9 +140,10 @@ in
extraPackages = with pkgs; [
lazygit
lazydocker
devenv
self'.packages.shell-tools
self'.packages.neovim-min
devenv
self'.packages.yazi
];
}).wrapper;
};