11 lines
310 B
Nix
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;
|
|
};
|
|
} |