Files
dendritic/modules/programs/yazi.nix
T
John Lancaster f2254e5dc7 added yazi
2026-06-10 08:53:21 -05:00

11 lines
310 B
Nix

{ 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;
};
}